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 2484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2495 }], | 2495 }], |
2496 ['enable_enhanced_bookmarks==1', { | 2496 ['enable_enhanced_bookmarks==1', { |
2497 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'], | 2497 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'], |
2498 }], | 2498 }], |
2499 ['enable_hangout_services_extension==1', { | 2499 ['enable_hangout_services_extension==1', { |
2500 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'], | 2500 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'], |
2501 }], | 2501 }], |
2502 ['enable_ipc_fuzzer==1', { | 2502 ['enable_ipc_fuzzer==1', { |
2503 'defines': ['ENABLE_IPC_FUZZER=1'], | 2503 'defines': ['ENABLE_IPC_FUZZER=1'], |
2504 }], | 2504 }], |
2505 ['OS=="win" and component=="shared_library"', { | |
2506 'dependencies': [ | |
2507 # All targets in a component build must depend on chrome_redirects, | |
2508 # to ensure that certain calls go through it. | |
2509 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_redirects', | |
2510 ], | |
2511 }], | |
2512 ['video_hole==1', { | 2505 ['video_hole==1', { |
2513 'defines': ['VIDEO_HOLE=1'], | 2506 'defines': ['VIDEO_HOLE=1'], |
2514 }], | 2507 }], |
2515 ], # conditions for 'target_defaults' | 2508 ], # conditions for 'target_defaults' |
2516 'target_conditions': [ | 2509 'target_conditions': [ |
2517 ['enable_wexit_time_destructors==1', { | 2510 ['enable_wexit_time_destructors==1', { |
2518 'conditions': [ | 2511 'conditions': [ |
2519 [ 'clang==1', { | 2512 [ 'clang==1', { |
2520 'cflags': [ | 2513 'cflags': [ |
2521 '-Wexit-time-destructors', | 2514 '-Wexit-time-destructors', |
(...skipping 2518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5040 # settings in target dicts. SYMROOT is a special case, because many other | 5033 # settings in target dicts. SYMROOT is a special case, because many other |
5041 # Xcode variables depend on it, including variables such as | 5034 # Xcode variables depend on it, including variables such as |
5042 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5035 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5043 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5036 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5044 # files to appear (when present) in the UI as actual files and not red | 5037 # files to appear (when present) in the UI as actual files and not red |
5045 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5038 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5046 # and therefore SYMROOT, needs to be set at the project level. | 5039 # and therefore SYMROOT, needs to be set at the project level. |
5047 'SYMROOT': '<(DEPTH)/xcodebuild', | 5040 'SYMROOT': '<(DEPTH)/xcodebuild', |
5048 }, | 5041 }, |
5049 } | 5042 } |
OLD | NEW |