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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
533 'enable_spellcheck%': 0, | 533 'enable_spellcheck%': 0, |
534 'enable_themes%': 0, | 534 'enable_themes%': 0, |
535 'remoting%': 0, | 535 'remoting%': 0, |
536 'arm_neon%': 0, | 536 'arm_neon%': 0, |
537 'arm_neon_optional%': 1, | 537 'arm_neon_optional%': 1, |
538 'native_discardable_memory%': 1, | 538 'native_discardable_memory%': 1, |
539 'native_memory_pressure_signals%': 1, | 539 'native_memory_pressure_signals%': 1, |
540 }], | 540 }], |
541 | 541 |
542 # Enable basic printing for Chrome for Android but disable printing | 542 # Enable basic printing for Chrome for Android but disable printing |
543 # completely for WebView. | 543 # completely for WebView. |
joth
2013/11/04 20:30:38
needs update
sgurun-gerrit only
2013/11/21 18:25:43
Done.
| |
544 ['OS=="android" and android_webview_build==0', { | 544 ['OS=="android"', { |
Peter Beverloo
2013/11/12 13:38:29
You can also consolidate this with the conditional
sgurun-gerrit only
2013/11/21 18:25:43
good point.
On 2013/11/12 13:38:29, Peter Beverlo
| |
545 'enable_printing%': 2, | 545 'enable_printing%': 2, |
546 }], | 546 }], |
547 ['OS=="android" and android_webview_build==1', { | |
548 'enable_printing%': 0, | |
549 }], | |
550 | 547 |
551 # Android OS includes support for proprietary codecs regardless of | 548 # Android OS includes support for proprietary codecs regardless of |
552 # building Chromium or Google Chrome. We also ship Google Chrome with | 549 # building Chromium or Google Chrome. We also ship Google Chrome with |
553 # proprietary codecs. | 550 # proprietary codecs. |
554 ['OS=="android" or branding=="Chrome"', { | 551 ['OS=="android" or branding=="Chrome"', { |
555 'proprietary_codecs%': 1, | 552 'proprietary_codecs%': 1, |
556 }, { | 553 }, { |
557 'proprietary_codecs%': 0, | 554 'proprietary_codecs%': 0, |
558 }], | 555 }], |
559 | 556 |
(...skipping 4102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4662 # settings in target dicts. SYMROOT is a special case, because many other | 4659 # settings in target dicts. SYMROOT is a special case, because many other |
4663 # Xcode variables depend on it, including variables such as | 4660 # Xcode variables depend on it, including variables such as |
4664 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4661 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4665 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4662 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4666 # files to appear (when present) in the UI as actual files and not red | 4663 # files to appear (when present) in the UI as actual files and not red |
4667 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4664 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4668 # and therefore SYMROOT, needs to be set at the project level. | 4665 # and therefore SYMROOT, needs to be set at the project level. |
4669 'SYMROOT': '<(DEPTH)/xcodebuild', | 4666 'SYMROOT': '<(DEPTH)/xcodebuild', |
4670 }, | 4667 }, |
4671 } | 4668 } |
OLD | NEW |