Chromium Code Reviews| 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 GN version of //chrome/chrome_features.gypi. | 5 # This is the GN version of //chrome/chrome_features.gypi. |
| 6 # Please keep in sync! | 6 # Please keep in sync! |
| 7 | 7 |
| 8 import("//build/config/chromecast_build.gni") | 8 import("//build/config/chromecast_build.gni") |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 24 | 24 |
| 25 # Enables support for background apps. | 25 # Enables support for background apps. |
| 26 enable_background = !is_ios && !is_android && !is_chromecast | 26 enable_background = !is_ios && !is_android && !is_chromecast |
| 27 | 27 |
| 28 enable_one_click_signin = | 28 enable_one_click_signin = |
| 29 is_win || is_mac || (is_linux && !is_chromeos && !is_chromecast) | 29 is_win || is_mac || (is_linux && !is_chromeos && !is_chromecast) |
| 30 | 30 |
| 31 # Set to true to bundle all the mash related mojo services into chrome. | 31 # Set to true to bundle all the mash related mojo services into chrome. |
| 32 # Specify --mash to chrome to have chrome start the mash environment. | 32 # Specify --mash to chrome to have chrome start the mash environment. |
| 33 enable_package_mash_services = is_chromeos | 33 enable_package_mash_services = is_chromeos |
| 34 | |
| 35 # Enables vr shell. | |
| 36 enable_vr_shell = false && is_android | |
|
Ted C
2016/08/02 21:38:11
umm...while my gn foo is quite weak, this looks pa
bshe
2016/08/02 22:26:59
Good question. I was trying to restrice other plat
| |
| 34 } | 37 } |
| 35 | 38 |
| 36 chrome_grit_defines = [ | 39 chrome_grit_defines = [ |
| 37 "enable_background=$enable_background", | 40 "enable_background=$enable_background", |
| 38 "enable_google_now=$enable_google_now", | 41 "enable_google_now=$enable_google_now", |
| 39 "use_vulcanize=$use_vulcanize", | 42 "use_vulcanize=$use_vulcanize", |
| 40 ] | 43 ] |
| OLD | NEW |