| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 # Set to 1 to enable fast builds. It disables debug info for fastest | 129 # Set to 1 to enable fast builds. It disables debug info for fastest |
| 130 # compilation. | 130 # compilation. |
| 131 'fastbuild%': 0, | 131 'fastbuild%': 0, |
| 132 | 132 |
| 133 # Set to 1 to enable dcheck in release without having to use the flag. | 133 # Set to 1 to enable dcheck in release without having to use the flag. |
| 134 'dcheck_always_on%': 0, | 134 'dcheck_always_on%': 0, |
| 135 | 135 |
| 136 # Disable file manager component extension by default. | 136 # Disable file manager component extension by default. |
| 137 'file_manager_extension%': 0, | 137 'file_manager_extension%': 0, |
| 138 | 138 |
| 139 # Enable WebUI TaskManager by default. | 139 # Disable WebUI TaskManager by default. |
| 140 'webui_task_manager%': 1, | 140 'webui_task_manager%': 0, |
| 141 | 141 |
| 142 # Python version. | 142 # Python version. |
| 143 'python_ver%': '2.6', | 143 'python_ver%': '2.6', |
| 144 | 144 |
| 145 # Set ARM-v7 compilation flags | 145 # Set ARM-v7 compilation flags |
| 146 'armv7%': 0, | 146 'armv7%': 0, |
| 147 | 147 |
| 148 # Set Neon compilation flags (only meaningful if armv7==1). | 148 # Set Neon compilation flags (only meaningful if armv7==1). |
| 149 'arm_neon%': 1, | 149 'arm_neon%': 1, |
| 150 | 150 |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 'file_manager_extension%': 1, | 352 'file_manager_extension%': 1, |
| 353 }, { | 353 }, { |
| 354 'file_manager_extension%': 0, | 354 'file_manager_extension%': 0, |
| 355 }], | 355 }], |
| 356 | 356 |
| 357 # ... except on Windows even with Aura. | 357 # ... except on Windows even with Aura. |
| 358 ['use_aura==1 and OS=="win"', { | 358 ['use_aura==1 and OS=="win"', { |
| 359 'file_manager_extension%': 0, | 359 'file_manager_extension%': 0, |
| 360 }], | 360 }], |
| 361 | 361 |
| 362 # Enable WebUI TaskManager always on Chrome OS or Aura. | 362 # Enable WebUI TaskManager on Chrome OS or Aura. |
| 363 ['chromeos==1 or use_aura==1', { | 363 ['chromeos==1 or use_aura==1', { |
| 364 'webui_task_manager%': 1, | 364 'webui_task_manager%': 1, |
| 365 }], | 365 }], |
| 366 | 366 |
| 367 ['OS=="android"', { | 367 ['OS=="android"', { |
| 368 'proprietary_codecs%': 1, | 368 'proprietary_codecs%': 1, |
| 369 'enable_webrtc%': 0, | 369 'enable_webrtc%': 0, |
| 370 }], | 370 }], |
| 371 | 371 |
| 372 # Use GPU accelerated cross process image transport by default | 372 # Use GPU accelerated cross process image transport by default |
| (...skipping 2438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2811 # settings in target dicts. SYMROOT is a special case, because many other | 2811 # settings in target dicts. SYMROOT is a special case, because many other |
| 2812 # Xcode variables depend on it, including variables such as | 2812 # Xcode variables depend on it, including variables such as |
| 2813 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2813 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2814 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2814 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2815 # files to appear (when present) in the UI as actual files and not red | 2815 # files to appear (when present) in the UI as actual files and not red |
| 2816 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2816 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2817 # and therefore SYMROOT, needs to be set at the project level. | 2817 # and therefore SYMROOT, needs to be set at the project level. |
| 2818 'SYMROOT': '<(DEPTH)/xcodebuild', | 2818 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2819 }, | 2819 }, |
| 2820 } | 2820 } |
| OLD | NEW |