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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 'image_loader_extension%': 1, | 517 'image_loader_extension%': 1, |
518 }, { | 518 }, { |
519 'file_manager_extension%': 0, | 519 'file_manager_extension%': 0, |
520 'image_loader_extension%': 0, | 520 'image_loader_extension%': 0, |
521 }], | 521 }], |
522 | 522 |
523 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', { | 523 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', { |
524 'enable_one_click_signin%': 1, | 524 'enable_one_click_signin%': 1, |
525 }], | 525 }], |
526 | 526 |
527 ['OS=="win"', { | |
528 'cld_version%': 1, | |
529 }], | |
530 | |
531 ['OS=="android"', { | 527 ['OS=="android"', { |
532 'enable_automation%': 0, | 528 'enable_automation%': 0, |
533 'enable_extensions%': 0, | 529 'enable_extensions%': 0, |
534 'enable_google_now%': 0, | 530 'enable_google_now%': 0, |
535 'cld_version%': 1, | 531 'cld_version%': 1, |
536 'enable_spellcheck%': 0, | 532 'enable_spellcheck%': 0, |
537 'enable_themes%': 0, | 533 'enable_themes%': 0, |
538 'remoting%': 0, | 534 'remoting%': 0, |
539 'arm_neon%': 0, | 535 'arm_neon%': 0, |
540 'arm_neon_optional%': 1, | 536 'arm_neon_optional%': 1, |
(...skipping 4204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4745 # settings in target dicts. SYMROOT is a special case, because many other | 4741 # settings in target dicts. SYMROOT is a special case, because many other |
4746 # Xcode variables depend on it, including variables such as | 4742 # Xcode variables depend on it, including variables such as |
4747 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4743 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4748 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4744 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4749 # files to appear (when present) in the UI as actual files and not red | 4745 # files to appear (when present) in the UI as actual files and not red |
4750 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4746 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4751 # and therefore SYMROOT, needs to be set at the project level. | 4747 # and therefore SYMROOT, needs to be set at the project level. |
4752 'SYMROOT': '<(DEPTH)/xcodebuild', | 4748 'SYMROOT': '<(DEPTH)/xcodebuild', |
4753 }, | 4749 }, |
4754 } | 4750 } |
OLD | NEW |