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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 429 # A flag to enable or disable our compile-time dependency | 429 # A flag to enable or disable our compile-time dependency |
| 430 # on gnome-keyring. If that dependency is disabled, no gnome-keyring | 430 # on gnome-keyring. If that dependency is disabled, no gnome-keyring |
| 431 # support will be available. This option is useful | 431 # support will be available. This option is useful |
| 432 # for Linux distributions and for Aura. | 432 # for Linux distributions and for Aura. |
| 433 ['chromeos==1 or use_aura==1', { | 433 ['chromeos==1 or use_aura==1', { |
| 434 'use_gnome_keyring%': 0, | 434 'use_gnome_keyring%': 0, |
| 435 }, { | 435 }, { |
| 436 'use_gnome_keyring%': 1, | 436 'use_gnome_keyring%': 1, |
| 437 }], | 437 }], |
| 438 | 438 |
| 439 ['toolkit_views==0 or OS=="mac" or OS=="ios"', { | 439 ['(toolkit_views==0 and OS!="android") or OS=="mac" or OS=="ios"', { |
|
sky
2012/08/02 17:22:50
Can you change the part you have in () to tookit_u
newt (away)
2012/08/02 21:55:07
Hmm... there doesn't seem to be an easy way to use
sky
2012/08/03 16:48:52
I'm surprised that this doesn't work since tookit_
Mark Mentovai
2012/08/03 21:14:24
toolkit_uses_gtk is defined in THIS variables bloc
| |
| 440 # GTK+, Mac and iOS want Title Case strings | 440 # GTK+, Mac and iOS want Title Case strings |
| 441 'use_titlecase_in_grd_files%': 1, | 441 'use_titlecase_in_grd_files%': 1, |
| 442 }], | 442 }], |
| 443 | 443 |
| 444 # Enable file manager extension on Chrome OS. | 444 # Enable file manager extension on Chrome OS. |
| 445 ['chromeos==1', { | 445 ['chromeos==1', { |
| 446 'file_manager_extension%': 1, | 446 'file_manager_extension%': 1, |
| 447 }, { | 447 }, { |
| 448 'file_manager_extension%': 0, | 448 'file_manager_extension%': 0, |
| 449 }], | 449 }], |
| (...skipping 2883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3333 # settings in target dicts. SYMROOT is a special case, because many other | 3333 # settings in target dicts. SYMROOT is a special case, because many other |
| 3334 # Xcode variables depend on it, including variables such as | 3334 # Xcode variables depend on it, including variables such as |
| 3335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3337 # files to appear (when present) in the UI as actual files and not red | 3337 # files to appear (when present) in the UI as actual files and not red |
| 3338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3339 # and therefore SYMROOT, needs to be set at the project level. | 3339 # and therefore SYMROOT, needs to be set at the project level. |
| 3340 'SYMROOT': '<(DEPTH)/xcodebuild', | 3340 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3341 }, | 3341 }, |
| 3342 } | 3342 } |
| OLD | NEW |