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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 }], | 283 }], |
284 | 284 |
285 ['use_ozone==1', { | 285 ['use_ozone==1', { |
286 'use_ozone_evdev%': 1, | 286 'use_ozone_evdev%': 1, |
287 }, { | 287 }, { |
288 'use_ozone_evdev%': 0, | 288 'use_ozone_evdev%': 0, |
289 }], | 289 }], |
290 | 290 |
291 # Set default gomadir. | 291 # Set default gomadir. |
292 ['OS=="win"', { | 292 ['OS=="win"', { |
293 'gomadir': 'c:\\goma\\goma-win', | 293 'gomadir': 'c:\\goma\\goma-win64', |
294 }, { | 294 }, { |
295 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', | 295 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', |
296 }], | 296 }], |
297 | 297 |
298 # Set the default "target_subarch" on iOS. Valid values are "arm32", | 298 # Set the default "target_subarch" on iOS. Valid values are "arm32", |
299 # "arm64" and "both" (meaning a fat binary). | 299 # "arm64" and "both" (meaning a fat binary). |
300 ['OS=="ios"', { | 300 ['OS=="ios"', { |
301 'target_subarch%': 'arm64', | 301 'target_subarch%': 'arm64', |
302 }], | 302 }], |
303 | 303 |
(...skipping 6049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6353 # settings in target dicts. SYMROOT is a special case, because many other | 6353 # settings in target dicts. SYMROOT is a special case, because many other |
6354 # Xcode variables depend on it, including variables such as | 6354 # Xcode variables depend on it, including variables such as |
6355 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6355 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6356 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6356 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6357 # files to appear (when present) in the UI as actual files and not red | 6357 # files to appear (when present) in the UI as actual files and not red |
6358 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6358 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6359 # and therefore SYMROOT, needs to be set at the project level. | 6359 # and therefore SYMROOT, needs to be set at the project level. |
6360 'SYMROOT': '<(DEPTH)/xcodebuild', | 6360 'SYMROOT': '<(DEPTH)/xcodebuild', |
6361 }, | 6361 }, |
6362 } | 6362 } |
OLD | NEW |