OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 'webui_task_manager%': 1, | 328 'webui_task_manager%': 1, |
329 }], | 329 }], |
330 | 330 |
331 ['OS=="android"', { | 331 ['OS=="android"', { |
332 'proprietary_codecs%': 1, | 332 'proprietary_codecs%': 1, |
333 'enable_webrtc%': 0, | 333 'enable_webrtc%': 0, |
334 }], | 334 }], |
335 | 335 |
336 # Use GPU accelerated cross process image transport by default | 336 # Use GPU accelerated cross process image transport by default |
337 # on TOUCH_UI and linux builds with the Aura window manager | 337 # on TOUCH_UI and linux builds with the Aura window manager |
338 ['views_compositor==1 and OS=="linux" and use_webkit_compositor!=1', { | 338 ['views_compositor==1 and OS=="linux"', { |
339 'ui_compositor_image_transport%': 1, | 339 'ui_compositor_image_transport%': 1, |
340 }, { | 340 }, { |
341 'ui_compositor_image_transport%': 0, | 341 'ui_compositor_image_transport%': 0, |
342 }], | 342 }], |
343 ], | 343 ], |
344 }, | 344 }, |
345 | 345 |
346 # Copy conditionally-set variables out one scope. | 346 # Copy conditionally-set variables out one scope. |
347 'branding%': '<(branding)', | 347 'branding%': '<(branding)', |
348 'buildtype%': '<(buildtype)', | 348 'buildtype%': '<(buildtype)', |
(...skipping 2235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2584 # settings in target dicts. SYMROOT is a special case, because many other | 2584 # settings in target dicts. SYMROOT is a special case, because many other |
2585 # Xcode variables depend on it, including variables such as | 2585 # Xcode variables depend on it, including variables such as |
2586 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2586 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2587 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2587 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2588 # files to appear (when present) in the UI as actual files and not red | 2588 # files to appear (when present) in the UI as actual files and not red |
2589 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2589 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2590 # and therefore SYMROOT, needs to be set at the project level. | 2590 # and therefore SYMROOT, needs to be set at the project level. |
2591 'SYMROOT': '<(DEPTH)/xcodebuild', | 2591 'SYMROOT': '<(DEPTH)/xcodebuild', |
2592 }, | 2592 }, |
2593 } | 2593 } |
OLD | NEW |