| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This is the GYP equivalent of //chrome/common/features.gni. | 5 # This is the GYP equivalent of //chrome/common/features.gni. |
| 6 # Please keep in sync! | 6 # Please keep in sync! |
| 7 | 7 |
| 8 { | 8 { |
| 9 'variables': { | 9 'variables': { |
| 10 'variables': { | 10 'variables': { |
| 11 # Conditional variables. | 11 # Conditional variables. |
| 12 'conditions': [ | 12 'conditions': [ |
| 13 ['OS=="android"', { | 13 ['OS=="android"', { |
| 14 'android_java_ui%': 1, | 14 'android_java_ui%': 1, |
| 15 }, { | 15 }, { |
| 16 'android_java_ui': 0, | 16 'android_java_ui': 0, |
| 17 }], | 17 }], |
| 18 ['OS=="android" or OS=="ios"', { | 18 ['OS=="android" or OS=="ios"', { |
| 19 'enable_background%': 0, | 19 'enable_background%': 0, |
| 20 'enable_google_now%': 0, | 20 'enable_google_now%': 0, |
| 21 }, { | 21 }, { |
| 22 'enable_background%': 1, | 22 'enable_background%': 1, |
| 23 'enable_google_now%': 1, | 23 'enable_google_now%': 1, |
| 24 }], |
| 25 ['chrome_pgo_phase!=0', { |
| 26 'pgo_build%': 1, |
| 27 }, { |
| 28 'pgo_build%': 0, |
| 24 }] | 29 }] |
| 25 ], | 30 ], |
| 26 | 31 |
| 27 # Use vulcanized HTML/CSS/JS resources to speed up WebUI (chrome://) | 32 # Use vulcanized HTML/CSS/JS resources to speed up WebUI (chrome://) |
| 28 # pages. https://github.com/polymer/vulcanize | 33 # pages. https://github.com/polymer/vulcanize |
| 29 'use_vulcanize%': 1, | 34 'use_vulcanize%': 1, |
| 30 }, | 35 }, |
| 31 | 36 |
| 32 # Anything in the conditions needs to be copied to the outer scope to be | 37 # Anything in the conditions needs to be copied to the outer scope to be |
| 33 # accessible. | 38 # accessible. |
| 34 'enable_background%': '<(enable_background)', | 39 'enable_background%': '<(enable_background)', |
| 35 'enable_google_now%': '<(enable_google_now)', | 40 'enable_google_now%': '<(enable_google_now)', |
| 36 'android_java_ui%': '<(android_java_ui)', | 41 'android_java_ui%': '<(android_java_ui)', |
| 37 'use_vulcanize%': '<(use_vulcanize)', | 42 'use_vulcanize%': '<(use_vulcanize)', |
| 43 'pgo_build%': '<(pgo_build)', |
| 38 | 44 |
| 39 # GN only, but defined here so BUILDFLAG works without ifdef. | 45 # GN only, but defined here so BUILDFLAG works without ifdef. |
| 40 'enable_package_mash_services%': 0, | 46 'enable_package_mash_services%': 0, |
| 41 | 47 |
| 42 # Grit defines based on the feature flags. These must be manually added to | 48 # Grit defines based on the feature flags. These must be manually added to |
| 43 # grit targets. | 49 # grit targets. |
| 44 'chrome_grit_defines': [ | 50 'chrome_grit_defines': [ |
| 45 '-D', 'enable_background=<(enable_background)', | 51 '-D', 'enable_background=<(enable_background)', |
| 46 '-D', 'enable_google_now=<(enable_google_now)', | 52 '-D', 'enable_google_now=<(enable_google_now)', |
| 47 '-D', 'use_vulcanize=<(use_vulcanize)', | 53 '-D', 'use_vulcanize=<(use_vulcanize)', |
| 48 ], | 54 ], |
| 49 }, | 55 }, |
| 50 } | 56 } |
| OLD | NEW |