| 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 'enable_printing%': 0, | 513 'enable_printing%': 0, |
| 514 'enable_themes%': 0, | 514 'enable_themes%': 0, |
| 515 'proprietary_codecs%': 1, | 515 'proprietary_codecs%': 1, |
| 516 'remoting%': 0, | 516 'remoting%': 0, |
| 517 'arm_neon%': 0, | 517 'arm_neon%': 0, |
| 518 'arm_neon_optional%': 1, | 518 'arm_neon_optional%': 1, |
| 519 'native_discardable_memory%': 1, | 519 'native_discardable_memory%': 1, |
| 520 'native_memory_pressure_signals%': 1, | 520 'native_memory_pressure_signals%': 1, |
| 521 }], | 521 }], |
| 522 | 522 |
| 523 # Enable autofill dialog for Android and Views-enabled platforms for now
. | 523 # Enable autofill dialog for Mac and Views-enabled platforms for now. |
| 524 ['toolkit_views==1 or (OS=="android" and android_webview_build==0) or OS
=="mac"', { | 524 ['toolkit_views==1 or OS=="mac"', { |
| 525 'enable_autofill_dialog%': 1 | 525 'enable_autofill_dialog%': 1 |
| 526 }], | 526 }], |
| 527 | 527 |
| 528 ['OS=="android" and android_webview_build==0', { | 528 ['OS=="android" and android_webview_build==0', { |
| 529 'enable_webrtc%': 1, | 529 'enable_webrtc%': 1, |
| 530 }], | 530 }], |
| 531 | 531 |
| 532 # Disable WebRTC for building WebView as part of Android system. | 532 # Disable WebRTC for building WebView as part of Android system. |
| 533 # TODO(boliu): Decide if we want WebRTC, and if so, also merge | 533 # TODO(boliu): Decide if we want WebRTC, and if so, also merge |
| 534 # the necessary third_party repositories. | 534 # the necessary third_party repositories. |
| (...skipping 4113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4648 # settings in target dicts. SYMROOT is a special case, because many other | 4648 # settings in target dicts. SYMROOT is a special case, because many other |
| 4649 # Xcode variables depend on it, including variables such as | 4649 # Xcode variables depend on it, including variables such as |
| 4650 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4650 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4651 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4651 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4652 # files to appear (when present) in the UI as actual files and not red | 4652 # files to appear (when present) in the UI as actual files and not red |
| 4653 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4653 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4654 # and therefore SYMROOT, needs to be set at the project level. | 4654 # and therefore SYMROOT, needs to be set at the project level. |
| 4655 'SYMROOT': '<(DEPTH)/xcodebuild', | 4655 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4656 }, | 4656 }, |
| 4657 } | 4657 } |
| OLD | NEW |