Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: build/common.gypi

Issue 8889039: build DRT, webkit_unit_tests from individual gyp files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revamp, clean up Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 # Point to ICU directory. 665 # Point to ICU directory.
666 'icu_src_dir': '../third_party/icu', 666 'icu_src_dir': '../third_party/icu',
667 667
668 # The Java Bridge is not compiled in by default. 668 # The Java Bridge is not compiled in by default.
669 'java_bridge%': 0, 669 'java_bridge%': 0,
670 670
671 # TODO(dpranke): This determines whether we should attempt to build DRT 671 # TODO(dpranke): This determines whether we should attempt to build DRT
672 # et al. from WebKit/Source/WebKit.gyp or Tools/Tools.gyp. This 672 # et al. from WebKit/Source/WebKit.gyp or Tools/Tools.gyp. This
673 # flag should only be needed temporarily. See 673 # flag should only be needed temporarily. See
674 # https://bugs.webkit.org/show_bug.cgi?id=68463. 674 # https://bugs.webkit.org/show_bug.cgi?id=68463.
675 'build_webkit_exes_from_webkit_gyp%': 1, 675 'build_webkit_exes_from_webkit_gyp%': 0,
676 676
677 # This flag is only used when disable_nacl==0 and disables all those 677 # This flag is only used when disable_nacl==0 and disables all those
678 # subcomponents which would require the installation of a native_client 678 # subcomponents which would require the installation of a native_client
679 # untrusted toolchain. 679 # untrusted toolchain.
680 'disable_nacl_untrusted%': 0, 680 'disable_nacl_untrusted%': 0,
681 681
682 # Disable Dart by default. 682 # Disable Dart by default.
683 'enable_dart%': 0, 683 'enable_dart%': 0,
684 684
685 # (Most) Chrome OS hardware reports ACPI power button releases correctly. 685 # (Most) Chrome OS hardware reports ACPI power button releases correctly.
(...skipping 2145 matching lines...) Expand 10 before | Expand all | Expand 10 after
2831 # settings in target dicts. SYMROOT is a special case, because many other 2831 # settings in target dicts. SYMROOT is a special case, because many other
2832 # Xcode variables depend on it, including variables such as 2832 # Xcode variables depend on it, including variables such as
2833 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2833 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2834 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2834 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2835 # files to appear (when present) in the UI as actual files and not red 2835 # files to appear (when present) in the UI as actual files and not red
2836 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2836 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2837 # and therefore SYMROOT, needs to be set at the project level. 2837 # and therefore SYMROOT, needs to be set at the project level.
2838 'SYMROOT': '<(DEPTH)/xcodebuild', 2838 'SYMROOT': '<(DEPTH)/xcodebuild',
2839 }, 2839 },
2840 } 2840 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698