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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 'ui_compositor_image_transport%': 1, | 389 'ui_compositor_image_transport%': 1, |
390 }, { | 390 }, { |
391 'ui_compositor_image_transport%': 0, | 391 'ui_compositor_image_transport%': 0, |
392 }], | 392 }], |
393 | 393 |
394 # Turn precompiled headers on by default for VS 2010. | 394 # Turn precompiled headers on by default for VS 2010. |
395 ['OS=="win" and MSVS_VERSION=="2010"', { | 395 ['OS=="win" and MSVS_VERSION=="2010"', { |
396 'chromium_win_pch%': 1 | 396 'chromium_win_pch%': 1 |
397 }], | 397 }], |
398 | 398 |
399 ['use_aura==1 or chromeos==1', { | 399 ['use_aura==1 or chromeos==1 or OS=="android"', { |
400 'enable_plugin_installation%': 0, | 400 'enable_plugin_installation%': 0, |
401 }, { | 401 }, { |
402 'enable_plugin_installation%': 1, | 402 'enable_plugin_installation%': 1, |
403 }], | 403 }], |
404 | 404 |
405 # linux_use_gold_binary: whether to use the binary checked into | 405 # linux_use_gold_binary: whether to use the binary checked into |
406 # third_party/gold. | 406 # third_party/gold. |
407 ['OS=="linux"', { | 407 ['OS=="linux"', { |
408 'linux_use_gold_binary%': 1, | 408 'linux_use_gold_binary%': 1, |
409 }, { | 409 }, { |
(...skipping 2533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2943 # settings in target dicts. SYMROOT is a special case, because many other | 2943 # settings in target dicts. SYMROOT is a special case, because many other |
2944 # Xcode variables depend on it, including variables such as | 2944 # Xcode variables depend on it, including variables such as |
2945 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2945 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2946 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2946 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2947 # files to appear (when present) in the UI as actual files and not red | 2947 # files to appear (when present) in the UI as actual files and not red |
2948 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2948 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2949 # and therefore SYMROOT, needs to be set at the project level. | 2949 # and therefore SYMROOT, needs to be set at the project level. |
2950 'SYMROOT': '<(DEPTH)/xcodebuild', | 2950 'SYMROOT': '<(DEPTH)/xcodebuild', |
2951 }, | 2951 }, |
2952 } | 2952 } |
OLD | NEW |