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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 # Override branding to select the desired branding flavor. | 103 # Override branding to select the desired branding flavor. |
104 'branding%': 'Chromium', | 104 'branding%': 'Chromium', |
105 | 105 |
106 'conditions': [ | 106 'conditions': [ |
107 # Windows and Linux (including Chrome OS) use Aura and Ash. | 107 # Windows and Linux (including Chrome OS) use Aura and Ash. |
108 ['OS=="win" or OS=="linux"', { | 108 ['OS=="win" or OS=="linux"', { |
109 'use_ash%': 1, | 109 'use_ash%': 1, |
110 'use_aura%': 1, | 110 'use_aura%': 1, |
111 }], | 111 }], |
112 | 112 |
113 ['chromecast==1 and OS!="android"', { | 113 ['chromecast==1', { |
114 'embedded%': 1, | 114 'use_libpci': 0, |
115 'use_ozone%': 1, | 115 'conditions': [ |
| 116 ['OS!="android"', { |
| 117 'embedded%': 1, |
| 118 'use_ozone%': 1, |
| 119 }], |
| 120 ], |
116 }], | 121 }], |
117 | 122 |
118 # Ozone uses Aura. | 123 # Ozone uses Aura. |
119 ['use_ozone==1', { | 124 ['use_ozone==1', { |
120 'use_aura%': 1, | 125 'use_aura%': 1, |
121 }], | 126 }], |
122 | 127 |
123 # Whether we're a traditional desktop unix. | 128 # Whether we're a traditional desktop unix. |
124 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") a
nd chromeos==0', { | 129 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") a
nd chromeos==0', { |
125 'desktop_linux%': 1, | 130 'desktop_linux%': 1, |
(...skipping 6159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6285 # settings in target dicts. SYMROOT is a special case, because many other | 6290 # settings in target dicts. SYMROOT is a special case, because many other |
6286 # Xcode variables depend on it, including variables such as | 6291 # Xcode variables depend on it, including variables such as |
6287 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6292 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6288 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6293 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6289 # files to appear (when present) in the UI as actual files and not red | 6294 # files to appear (when present) in the UI as actual files and not red |
6290 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6295 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6291 # and therefore SYMROOT, needs to be set at the project level. | 6296 # and therefore SYMROOT, needs to be set at the project level. |
6292 'SYMROOT': '<(DEPTH)/xcodebuild', | 6297 'SYMROOT': '<(DEPTH)/xcodebuild', |
6293 }, | 6298 }, |
6294 } | 6299 } |
OLD | NEW |