| 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 2845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2856 ], | 2856 ], |
| 2857 }], # fastbuild!=0 | 2857 }], # fastbuild!=0 |
| 2858 ['dont_embed_build_metadata==1', { | 2858 ['dont_embed_build_metadata==1', { |
| 2859 'defines': [ | 2859 'defines': [ |
| 2860 'DONT_EMBED_BUILD_METADATA', | 2860 'DONT_EMBED_BUILD_METADATA', |
| 2861 ], | 2861 ], |
| 2862 }], # dont_embed_build_metadata==1 | 2862 }], # dont_embed_build_metadata==1 |
| 2863 ['dcheck_always_on!=0', { | 2863 ['dcheck_always_on!=0', { |
| 2864 'defines': ['DCHECK_ALWAYS_ON=1'], | 2864 'defines': ['DCHECK_ALWAYS_ON=1'], |
| 2865 }], # dcheck_always_on!=0 | 2865 }], # dcheck_always_on!=0 |
| 2866 # Force disable blink assertions on Cast device builds (overrides DCHECK_A
LWAYS_ON) |
| 2867 ['chromecast==1 and OS=="linux" and is_cast_desktop_build==0', { |
| 2868 'defines': ['ENABLE_ASSERT=0'], |
| 2869 }], |
| 2866 ['tracing_like_official_build!=0', { | 2870 ['tracing_like_official_build!=0', { |
| 2867 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'], | 2871 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'], |
| 2868 }], # tracing_like_official_build!=0 | 2872 }], # tracing_like_official_build!=0 |
| 2869 ['fieldtrial_testing_like_official_build==0 and branding!="Chrome"', { | 2873 ['fieldtrial_testing_like_official_build==0 and branding!="Chrome"', { |
| 2870 'defines': ['FIELDTRIAL_TESTING_ENABLED'], | 2874 'defines': ['FIELDTRIAL_TESTING_ENABLED'], |
| 2871 }], # fieldtrial_testing_like_official_build==0 and branding!="Chrome" | 2875 }], # fieldtrial_testing_like_official_build==0 and branding!="Chrome" |
| 2872 ['OS=="win"', { | 2876 ['OS=="win"', { |
| 2873 'defines': ['NO_TCMALLOC'], | 2877 'defines': ['NO_TCMALLOC'], |
| 2874 'conditions': [ | 2878 'conditions': [ |
| 2875 ['win_use_allocator_shim==1', { | 2879 ['win_use_allocator_shim==1', { |
| (...skipping 3549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6425 # settings in target dicts. SYMROOT is a special case, because many other | 6429 # settings in target dicts. SYMROOT is a special case, because many other |
| 6426 # Xcode variables depend on it, including variables such as | 6430 # Xcode variables depend on it, including variables such as |
| 6427 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6431 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6428 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6432 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6429 # files to appear (when present) in the UI as actual files and not red | 6433 # files to appear (when present) in the UI as actual files and not red |
| 6430 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6434 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6431 # and therefore SYMROOT, needs to be set at the project level. | 6435 # and therefore SYMROOT, needs to be set at the project level. |
| 6432 'SYMROOT': '<(DEPTH)/xcodebuild', | 6436 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6433 }, | 6437 }, |
| 6434 } | 6438 } |
| OLD | NEW |