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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 480 'use_titlecase_in_grd_files%': 1, | 480 'use_titlecase_in_grd_files%': 1, |
| 481 }], | 481 }], |
| 482 | 482 |
| 483 # Enable file manager extension on Chrome OS. | 483 # Enable file manager extension on Chrome OS. |
| 484 ['chromeos==1', { | 484 ['chromeos==1', { |
| 485 'file_manager_extension%': 1, | 485 'file_manager_extension%': 1, |
| 486 }, { | 486 }, { |
| 487 'file_manager_extension%': 0, | 487 'file_manager_extension%': 0, |
| 488 }], | 488 }], |
| 489 | 489 |
| 490 ['OS=="win" or OS=="mac" or (OS=="linux" and use_aura==0)', { | 490 ['OS=="win" or OS=="mac" or (OS=="linux")', { |
|
Roger Tawa OOO till Jul 10th
2013/02/05 16:52:03
I think you can remove the ( and ).
Does this pre
jwd
2013/02/05 18:10:25
This should work. This condition is used elsewhere
| |
| 491 'enable_one_click_signin%': 1, | 491 'enable_one_click_signin%': 1, |
| 492 }], | 492 }], |
| 493 | 493 |
| 494 ['OS=="android"', { | 494 ['OS=="android"', { |
| 495 'enable_automation%': 0, | 495 'enable_automation%': 0, |
| 496 'enable_extensions%': 0, | 496 'enable_extensions%': 0, |
| 497 'enable_google_now%': 0, | 497 'enable_google_now%': 0, |
| 498 'enable_language_detection%': 0, | 498 'enable_language_detection%': 0, |
| 499 'enable_printing%': 0, | 499 'enable_printing%': 0, |
| 500 'enable_themes%': 0, | 500 'enable_themes%': 0, |
| (...skipping 3532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4033 # settings in target dicts. SYMROOT is a special case, because many other | 4033 # settings in target dicts. SYMROOT is a special case, because many other |
| 4034 # Xcode variables depend on it, including variables such as | 4034 # Xcode variables depend on it, including variables such as |
| 4035 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4035 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4036 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4036 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4037 # files to appear (when present) in the UI as actual files and not red | 4037 # files to appear (when present) in the UI as actual files and not red |
| 4038 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4038 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4039 # and therefore SYMROOT, needs to be set at the project level. | 4039 # and therefore SYMROOT, needs to be set at the project level. |
| 4040 'SYMROOT': '<(DEPTH)/xcodebuild', | 4040 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4041 }, | 4041 }, |
| 4042 } | 4042 } |
| OLD | NEW |