Chromium Code Reviews| 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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 935 | 935 |
| 936 # Choose static link by build type. | 936 # Choose static link by build type. |
| 937 'conditions': [ | 937 'conditions': [ |
| 938 ['android_build_type==0', { | 938 ['android_build_type==0', { |
| 939 'static_link_system_icu%': 1, | 939 'static_link_system_icu%': 1, |
| 940 }, { | 940 }, { |
| 941 'static_link_system_icu%': 0, | 941 'static_link_system_icu%': 0, |
| 942 }], | 942 }], |
| 943 ], | 943 ], |
| 944 # TODO(steveblock): Investigate using the system versions of sqlite, | 944 # TODO(steveblock): Investigate using the system versions of sqlite, |
| 945 # libjpeg, expat and stlport. | 945 # libjpeg and stlport. |
| 946 # Enable to use system sqlite. | 946 # Enable to use system sqlite. |
| 947 'use_system_sqlite%': 0, # '<(android_build_type)', | 947 'use_system_sqlite%': 0, # '<(android_build_type)', |
| 948 # Enable to use system libjpeg. | 948 # Enable to use system libjpeg. |
| 949 'use_system_libjpeg%': 0, # '<(android_build_type)', | 949 'use_system_libjpeg%': 0, # '<(android_build_type)', |
| 950 # Enable to use the system libexpat. | 950 # Enable to use the system expat. |
| 951 'use_system_libexpat%': 0, # '<(android_build_type)', | 951 'use_system_expat%': '<(android_build_type)', |
|
Lei Zhang
2012/07/09 23:05:33
Is |android_build_type| ever going to be non-zero?
| |
| 952 # Enable to use the system stlport, otherwise statically | 952 # Enable to use the system stlport, otherwise statically |
| 953 # link the NDK one? | 953 # link the NDK one? |
| 954 'use_system_stlport%': 0, # '<(android_build_type)', | 954 'use_system_stlport%': 0, # '<(android_build_type)', |
| 955 # Copy it out one scope. | 955 # Copy it out one scope. |
| 956 'android_build_type%': '<(android_build_type)', | 956 'android_build_type%': '<(android_build_type)', |
| 957 }], # OS=="android" | 957 }], # OS=="android" |
| 958 ['OS=="mac"', { | 958 ['OS=="mac"', { |
| 959 # Enable clang on mac by default! | 959 # Enable clang on mac by default! |
| 960 'clang%': 1, | 960 'clang%': 1, |
| 961 # Compile in Breakpad support by default so that it can be | 961 # Compile in Breakpad support by default so that it can be |
| (...skipping 2274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3236 # settings in target dicts. SYMROOT is a special case, because many other | 3236 # settings in target dicts. SYMROOT is a special case, because many other |
| 3237 # Xcode variables depend on it, including variables such as | 3237 # Xcode variables depend on it, including variables such as |
| 3238 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3238 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3239 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3239 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3240 # files to appear (when present) in the UI as actual files and not red | 3240 # files to appear (when present) in the UI as actual files and not red |
| 3241 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3241 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3242 # and therefore SYMROOT, needs to be set at the project level. | 3242 # and therefore SYMROOT, needs to be set at the project level. |
| 3243 'SYMROOT': '<(DEPTH)/xcodebuild', | 3243 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3244 }, | 3244 }, |
| 3245 } | 3245 } |
| OLD | NEW |