OLD | NEW |
---|---|
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 2463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2474 }], | 2474 }], |
2475 ['enable_mdns==1', { | 2475 ['enable_mdns==1', { |
2476 'defines': ['ENABLE_MDNS=1'], | 2476 'defines': ['ENABLE_MDNS=1'], |
2477 }], | 2477 }], |
2478 ['enable_enhanced_bookmarks==1', { | 2478 ['enable_enhanced_bookmarks==1', { |
2479 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'], | 2479 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'], |
2480 }], | 2480 }], |
2481 ['enable_ipc_fuzzer==1', { | 2481 ['enable_ipc_fuzzer==1', { |
2482 'defines': ['ENABLE_IPC_FUZZER=1'], | 2482 'defines': ['ENABLE_IPC_FUZZER=1'], |
2483 }], | 2483 }], |
2484 ['android_webview_build==1', { | |
2485 'defines': ['VIDEO_HOLE=1'], | |
boliu
2014/01/24 21:56:32
This has implications for webview due to all the n
ycheo (away)
2014/01/28 13:08:53
I'll send you another CL.
| |
2486 }], | |
2484 ], # conditions for 'target_defaults' | 2487 ], # conditions for 'target_defaults' |
2485 'target_conditions': [ | 2488 'target_conditions': [ |
2486 ['enable_wexit_time_destructors==1', { | 2489 ['enable_wexit_time_destructors==1', { |
2487 'conditions': [ | 2490 'conditions': [ |
2488 [ 'clang==1', { | 2491 [ 'clang==1', { |
2489 'cflags': [ | 2492 'cflags': [ |
2490 '-Wexit-time-destructors', | 2493 '-Wexit-time-destructors', |
2491 ], | 2494 ], |
2492 'xcode_settings': { | 2495 'xcode_settings': { |
2493 'WARNING_CFLAGS': [ | 2496 'WARNING_CFLAGS': [ |
(...skipping 2341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4835 # settings in target dicts. SYMROOT is a special case, because many other | 4838 # settings in target dicts. SYMROOT is a special case, because many other |
4836 # Xcode variables depend on it, including variables such as | 4839 # Xcode variables depend on it, including variables such as |
4837 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4840 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4838 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4841 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4839 # files to appear (when present) in the UI as actual files and not red | 4842 # files to appear (when present) in the UI as actual files and not red |
4840 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4843 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4841 # and therefore SYMROOT, needs to be set at the project level. | 4844 # and therefore SYMROOT, needs to be set at the project level. |
4842 'SYMROOT': '<(DEPTH)/xcodebuild', | 4845 'SYMROOT': '<(DEPTH)/xcodebuild', |
4843 }, | 4846 }, |
4844 } | 4847 } |
OLD | NEW |