Граф коммитов

452 Коммитов

Автор SHA1 Сообщение Дата
thomasvl@chromium.org 94a8673823 Make the ObjC linker flag more generic so it only cares if we're building a
bundle (catches frameworks and app and anything else added in the future).
Review URL: http://codereview.chromium.org/50053

git-svn-id: http://src.chromium.org/svn/trunk/src/build@12196 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-20 17:55:26 +00:00
thomasvl@chromium.org 91d6d7fe89 Chromium side of http://codereview.chromium.org/42394
- Remove the use of the mac specific type 'application' and use 'executable'
with 'mac_bundle' set to 1.

- update common.gypi to default mac_bundle to zero.

- update common.gypi to look at mac_bundle for some of the base behaviors that
were on 'application'.

- Roll DEPS to get the new version of gyp w/ the matching support.

Review URL: http://codereview.chromium.org/50015

git-svn-id: http://src.chromium.org/svn/trunk/src/build@12136 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-19 19:26:42 +00:00
hclam@chromium.org fb1b1c3bbe Uses FFmpeg in chrome/renderer
- Have chrome/renderer to use FFmpeg
  - Added using_media.vsprops to all affected projects that depends
    on chrome/renderer.
  - Added lib path "$(OutDir)\lib" to essential.vsprops

Review URL: http://codereview.chromium.org/48118

git-svn-id: http://src.chromium.org/svn/trunk/src/build@12071 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-19 01:35:36 +00:00
ager@chromium.org 28a0fe40fb Update V8 to version 1.1.1.2.
This contains the new compiler infrastructure which gives a nice performance improvement on the V8 benchmark suite.
Review URL: http://codereview.chromium.org/48143

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11994 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-18 18:49:56 +00:00
maruel@chromium.org 617ca8a8a7 Revert 11946 since it is causing a build breakage on full rebuild. The
sandbox project wasn't copying wow_helper.exe anymore, causing a build 
breakage on x64 platforms only.

TBR=bnelson
Review URL: http://codereview.chromium.org/42328

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11955 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-18 12:09:58 +00:00
bradnelson@google.com 3873feba8b Moving sbox to gyp on windows.
(Also fixing missing property on sdch.)


Review URL: http://codereview.chromium.org/42317

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11946 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-18 04:51:42 +00:00
bradnelson@google.com ade6465f46 Switching net over to use gyp on windows.
Review URL: http://codereview.chromium.org/48108

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11942 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-18 02:30:55 +00:00
ager@chromium.org bea0916291 Pull out V8 update.
Review URL: http://codereview.chromium.org/44006

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11804 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-16 23:48:58 +00:00
agl@chromium.org 7c3454cf92 Linux: Use -mfpmath=sse to remove differences between opt and debug
(note: this change now requires a P4 to build. It's easy to back it
out for older processors, but they shouldn't be used to run
layout-tests.)

We are seeing issues where the opt build ends up with very slightly
different colours in layout tests than the debug build. This is
probably due to floating point rounding differences.

All floating-point computations on x87 happens in 80-bit precision.
Because the C and C++ language standards allow the compiler to keep
the floating-point values in higher precision than what's specified in
the source and doing so is more efficient than constantly rounding up
to 64-bit or 32-bit precision as specified in the source, the
compiler, especially in the optimized mode, tries very hard to keep
values in x87 floating-point stack (in 80-bit precision) as long as
possible. This has important side effects, that the real value used in
computation may change depending on how the compiler did the
optimization - that is, the value kept in 80-bit is different than the
value rounded down to 64-bit or 32-bit. There are possible compiler
options to make this behavior consistent (e.g. -ffloat-store would
keep all floating-values in the memory, thus force them to be rounded
to its original precision) but they have significant runtime
performance penalty.

-mfpmath=sse -msse2 makes the compiler use SSE instructions which keep
floating-point values in SSE registers in its native precision (32-bit
for single precision, and 64-bit for double precision values). This
means the floating-point value used during computation does not change
depending on how the compiler optimized the code, since the value is
always kept in its specified precision.

Internal performace tests of these options shows that it's not a clear
performance win or loss across the board.


git-svn-id: http://src.chromium.org/svn/trunk/src/build@11751 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-16 18:46:32 +00:00
ager@chromium.org 12b64c34cb Update V8 containing the new compiler infrastructure.
We will pull this out again once the dev channel release has been cut.
We need to get this in the dev channel release to have the new
infrastructure tested in the real world.

Review URL: http://codereview.chromium.org/42234

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11745 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-16 18:18:13 +00:00
bradnelson@google.com 36f7bc2cb1 Reverting change 11688.
TBR.

Review URL: http://codereview.chromium.org/46070

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11692 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-14 01:04:27 +00:00
bradnelson@google.com e973843e20 Switching net to gyp on windows.
Review URL: http://codereview.chromium.org/42184

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11688 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-13 23:58:07 +00:00
sgk@google.com 27a416d494 Have the gyp build use base SCons, not Hammer components, so it can
control the Alias namespace directly and set appropriate default targets.
This currently switches within the various Chrome*() calls.
Review URL: http://codereview.chromium.org/46037

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11657 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-13 19:42:26 +00:00
jar@chromium.org 2b43972af5 Rollback v8 DEPS roll (for real)
I snagged the wrong rev last time.

Reverting back to 11622, which had the comment:
---------------
r11622 | ager@chromium.org | 2009-03-12 23:53:03 -0700 (Thu, 12 Mar 2009) | 6 lines
Update V8 to version 1.1.1.
Contains a couple of layout tests rebaselines.

This time contains an updated gyp file for the mac build.
Review URL: http://codereview.chromium.org/43134
---------------

This also includes the other file change in 11624:

---------------
r11624 | ager@chromium.org | 2009-03-13 02:17:01 -0700 (Fri, 13 Mar 2009) | 6 li
nes

Update V8 to fix an assertion that does not hold.

Add test that tests arbitrary limits on expressions that can be
handled without stack overflows to the test list.  I have filed a bug
report and Kevin is investigating.
Review URL: http://codereview.chromium.org/46029
---------------


trb=darin,ager
Review URL: http://codereview.chromium.org/46048

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11654 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-13 19:23:13 +00:00
ager@chromium.org a6b2851dfa Update V8 to version 1.1.1.
Contains a couple of layout tests rebaselines.

This time contains an updated gyp file for the mac build.
Review URL: http://codereview.chromium.org/43134

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11622 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-13 06:53:03 +00:00
mark@chromium.org b1a8106c28 Allow Mac precompiled headers to be disabled based on a GYP variable.
Review URL: http://codereview.chromium.org/42133

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11557 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-12 19:09:24 +00:00
sgk@google.com 7a0675b961 Get rid of now unnecessary SCons-isms for gyp on Linux
(in favor of letting the gyp generator pass us $DESTINATION_ROOT,
which gives us the right absolute path name to the output directory).
Review URL: http://codereview.chromium.org/43108

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11549 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-12 17:46:03 +00:00
bradnelson@google.com eba4350d01 Switching to gyp generated vcprojs for some components.
Includes propset changes:
Property changes on: C:\clients\chrome6\src\skia
___________________________________________________________________
Modified: svn:ignore
   - skia.xcodeproj

   + skia.xcodeproj
skia.sln


Property changes on: C:\clients\chrome6\src\third_party\zlib
___________________________________________________________________
Modified: svn:ignore
   - zlib.xcodeproj

   + zlib.xcodeproj
zlib.sln


Property changes on: C:\clients\chrome6\src\third_party\libpng
___________________________________________________________________
Modified: svn:ignore
   - libpng.xcodeproj

   + libpng.xcodeproj
libpng.sln

Property changes on: C:\clients\chrome6\src\third_party\libjpeg
___________________________________________________________________
Modified: svn:ignore
   - libjpeg.xcodeproj

   + libjpeg.xcodeproj
libjpeg.sln


Property changes on: C:\clients\chrome6\src\build
___________________________________________________________________
Modified: svn:ignore
   - all.xcodeproj

   + all.xcodeproj
all.sln
All.vcproj


Property changes on: C:\clients\chrome6\src\base
___________________________________________________________________
Modified: svn:ignore
   - base.xcodeproj

   + base.xcodeproj
base.vcproj
base_gfx.vcproj
base_unittests.vcproj
debug_message.vcproj


Property changes on: C:\clients\chrome6\src\testing
___________________________________________________________________
Modified: svn:ignore
   - gtest
gtest.xcodeproj

   + gtest
gtest.xcodeproj
gtest.sln



Review URL: http://codereview.chromium.org/43101

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11512 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-12 02:31:38 +00:00
deanm@chromium.org a4312d9d07 NO CODE CHANGE
Normalize end of file newlines in build/ media/ printing/ testing/ and tools/.  All files end in a single newline.

Review URL: http://codereview.chromium.org/43082


git-svn-id: http://src.chromium.org/svn/trunk/src/build@11449 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-11 15:17:55 +00:00
maruel@chromium.org a13325c265 Reenable incremental linking for most projects except the largest ones. Will fix later.
Review URL: http://codereview.chromium.org/42016

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11440 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-11 13:39:41 +00:00
bradnelson@google.com 74212783bb Adding fixed guids to some modules to facilitate incremental switch to gyp.
Review URL: http://codereview.chromium.org/42044

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11388 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-10 22:25:54 +00:00
bradnelson@google.com 6f1ae5601a Making what gets generated platform conditional to allow gradual phase in on windows.
Review URL: http://codereview.chromium.org/42003

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11387 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-10 22:21:55 +00:00
markus@chromium.org 4ed411c875 Prompt the user before performing particularly expensive operations.
This should help users that have slow network connections.
Review URL: http://codereview.chromium.org/43043

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11378 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-10 21:53:08 +00:00
markus@chromium.org 368bc30c1a Re-implemented the install-build-deps.sh script file, so that on 64 bit
systems we build and install proper Debian packages instead of directly
installing files into the filesystem.

This allows the user to cleanly uninstall the packages and it prevents
corruption from us accidentally overwriting files that the system
tries to manage itself.

Also, the script now installs debugging symbols where available. This allows
gdb to step into system libraries. The developer still needs to download the
actual source code with "apt-get source" and point the debugger to it.
Review URL: http://codereview.chromium.org/40288

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11336 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-10 16:43:01 +00:00
sgk@google.com ee51bc23a1 Build test_shell and test_shell_tests on Linux from gyp-generated scons files:
* Catch up to recent changes:
  * Rename RenderThemeChromiumGtk.cpp to RenderThemeChromiumLinux.cpp.
  * Fix spelling of V*NPObject.{cpp,h}
* Explicitly include varions WebCore *Gtk.cpp and *Linux.cpp files that
  are excluded by the general regular expression.
* Add webinput_event_util.cc.
* Exclude glue/plugins/plugin_stubs.cc.
* Add a Linux test_shell_resources target to build
  test_shell_resources.{h,pak}.
* Add an explicit test_shell action to repack resources into test_shell.pak.
* Use -Wno-multichar when building libtest_shell_common.a.
* Use -DWTF_USE_PTHREADS when building libwtf.a, and when dependent
  targets compile against it.
* Use tools/test_shell/test_shell_main{,_GYP}.scons as the main
  entry point for GYP-based builds of webkit.
* Add base/gfx/gtk_util.cc to the base build.
Review URL: http://codereview.chromium.org/39219

git-svn-id: http://src.chromium.org/svn/trunk/src/build@11160 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-06 21:33:46 +00:00
jrg@chromium.org 6c6a8a498f Branding of Chrome.app.
To brand, do a "src/tools/gyp/gyp_dogfood -Dbranding=Chrome src/build/all.gyp"
(Then build, of course.)

Review URL: http://codereview.chromium.org/40066

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10920 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-04 21:36:39 +00:00
sgk@google.com f30559117d Move the main entry point *.scons files in the key remaining components
(net, webkit, chrome) to *_main.scons, so we can use GYP=1 on the command
line to switch between old and new while tracking down the remaining
inconsistencies.
Review URL: http://codereview.chromium.org/39080

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10882 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-04 07:24:51 +00:00
bradnelson@google.com 90e410d267 Fixes to gyp files to get test_shell building on windows from a gyp project (doesn't run correctly yet).
Switched all uses of windows system libraries that assumed they were in the include path to use -l (which will be
supported on windows in a separate change).
Review URL: http://codereview.chromium.org/27362

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10781 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-03 04:22:23 +00:00
sgk@google.com 77a0e1d007 Start stitching GYP-generated files into the Linux build:
* Add a GYP=1 command-line variable to use the gyp-generated files
  (which are generated side-by-side until everything's okay enough
  to cut over for real).

* Rearrange existing *.scons files to match the layout of the
  gyp-generated ones, so the transition will be easier:
  * base.scons (the wrapping logic that calls the other *.scons files)
    => base_sln.scons
  * base_lib.scons (the library itself)
    => base.scons (matching the gyp target generation)
  * gfx/base_gfx.scons
    => base_gfx.scons (with necessary prepending of "gfx/" to path names)

build/SConscript.main fixes:
* Use an internal ${_GYP} infix variable to select the right flavor
  of *.scons file (multiple places)
* When building with GYP=1, only load the one component *_sln_gyp.scons
  file, because gyp has already created it with knowledge of all the
  right dependent *_gyp.scons files to load.

Linux gyp build fixes:
* Add -32 to $ASFLAGS for generating a 32-bit libicudata.a from the
  now-checked in .s.
* Add -Wno-unused and -Wno-unused-function to skia.
Review URL: http://codereview.chromium.org/28207

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10759 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-03 00:35:36 +00:00
mark@chromium.org 68297f8d17 Add googleurl.gyp:googleurl_unittests
Review URL: http://codereview.chromium.org/28317

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10705 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-02 17:19:35 +00:00
mark@chromium.org 8d80412539 GYP it, GYP it good.
Convert the Mac build to the new GYP-based Xcode build, and remove the old
Xcode projects.
Review URL: http://codereview.chromium.org/28305

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10693 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-03-02 00:16:16 +00:00
mark@chromium.org 54e9134c6f Link applications with -Wl,-ObjC to keep Objective-C implementations available
Review URL: http://codereview.chromium.org/28289

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10662 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-28 00:50:08 +00:00
mark@chromium.org 776aaf065b Ensure classes only referenced by .xib files end up in the executable
Review URL: http://codereview.chromium.org/27277

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10619 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-27 19:28:52 +00:00
mark@chromium.org 3da8b6ab18 v8.gyp changes for Chromium r10594 v8 r1370 (1.0.2)
Review URL: http://codereview.chromium.org/28262

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10613 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-27 17:45:21 +00:00
ager@chromium.org 89792925a9 Update V8 to version 1.0.2.
This removes JSCRE from V8 and I have made the corresponding changes
to the xcode project.

Review URL: http://codereview.chromium.org/27199

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10594 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-27 07:24:14 +00:00
hbono@chromium.org 327f8fdd5c Reverting 10456.
Review URL: http://codereview.chromium.org/28180

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10458 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-26 10:21:49 +00:00
hbono@chromium.org 14cc9c717b Fixes Issue 7377: Regression: Omnibox trims URL ending with 0x85
To fix this issue, this change adds a new function TrimWhitespaceUTF8(), which trims space characters (including non-printable characters and broken UTF-8 characters) from either end of a UTF-8 string.
Please feel free to give me your comments since I'm not sure this implimentation is correct. (Maybe this implementation trims too aggressively.)

BUG=7377
Review URL: http://codereview.chromium.org/20219

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10456 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-26 10:02:52 +00:00
mark@chromium.org 813b466231 Add printing.gyp
Review URL: http://codereview.chromium.org/28138

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10445 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-26 03:19:22 +00:00
mark@chromium.org cbda795c0d Import .gyp files into the Chromium tree
Review URL: http://codereview.chromium.org/27158

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10380 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-25 21:26:55 +00:00
evan@chromium.org 46285c9d53 We need more symlinks on 64-bit Hardy.
(Also, stripping whitespace while I'm at it.)

TBR=agl

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10377 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-25 20:51:44 +00:00
mark@chromium.org fef081a1d6 Add hunspell.xcodeproj.
Review URL: http://codereview.chromium.org/28078

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10282 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-24 20:21:08 +00:00
mark@chromium.org d38c157e80 Add printing.xcodeproj.
Review URL: http://codereview.chromium.org/28076

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10279 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-24 19:46:27 +00:00
mmoss@chromium.org 1c4944595a Multiple fixes for broken Linux SHARED=1 build. This gets things building, but the resulting 'chrome' binary crashes on start-up (test_shell seems to work better).
Review URL: http://codereview.chromium.org/27054


git-svn-id: http://src.chromium.org/svn/trunk/src/build@10228 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-23 23:58:00 +00:00
maruel@chromium.org 4c4f2f59ab Add linux printing module.
Review URL: http://codereview.chromium.org/27008

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10136 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-21 01:15:37 +00:00
maruel@chromium.org 3663547e91 Add the fastbuild build type. FAST_BUILD_TYPE=fastbuild will cause no debug symbol to be generated to make the Windows try slaves faster.
Review URL: http://codereview.chromium.org/27009

git-svn-id: http://src.chromium.org/svn/trunk/src/build@10120 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-20 20:42:06 +00:00
tc@google.com 5da6947e03 Second try of landing chrome_resources project. Changes from last time:
- fix scons dependencies by adding a target for grit/theme_resources.h
- fix mac build by adding grit to unittest include path
- fix check deps by adding rules for /grit dir.

Create a chrome_resources.vcproj that holds grd files that hold
non-string resources.  Put browser_resources.grd into this vcproj.

Port theme_resources.rc/theme_resources.h to theme_resources.grd
and put it in the vcproj too.

I did a find/replace on the theme_resources include line.

Modify grit so header files go in grit_generated_resources/grit/
so the include path can be cleaner.  I'll migrate the others
in follow up patches.

theme_resources.rc had a conditional include of distribution_resources.rc
so I had to add support for preprocessor defines to visual studio.

Review URL: http://codereview.chromium.org/24011


git-svn-id: http://src.chromium.org/svn/trunk/src/build@9664 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-12 17:14:07 +00:00
evan@chromium.org 368ac0cb6a Remove filtering out of some libraries from shared links.
Review URL: http://codereview.chromium.org/23024


git-svn-id: http://src.chromium.org/svn/trunk/src/build@9658 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-12 17:04:45 +00:00
evan@chromium.org e0d13a1ab6 Remove LIBS_DIR usage.
It doesn't seem to occur anywhere in the SCons code nor in ours(?).

Review URL: http://codereview.chromium.org/20174


git-svn-id: http://src.chromium.org/svn/trunk/src/build@9416 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-09 21:58:44 +00:00
maruel@chromium.org 6e71ac1982 WIN32 is defined by windows.h. _WIN32 is defined by the compiler. Fix the check to use _WIN32 since it is defined 100% of the time.
Review URL: http://codereview.chromium.org/20108

git-svn-id: http://src.chromium.org/svn/trunk/src/build@9387 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-09 15:42:08 +00:00
iposva@chromium.org 57ca73c76e DEBUG was dropped from the preprocessor macros at some point. Add it
back into the V8 Xcode project to make sure that assertions are enabled
in debug builds.

Review URL: http://codereview.chromium.org/21062

git-svn-id: http://src.chromium.org/svn/trunk/src/build@9194 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
2009-02-05 00:10:01 +00:00