| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/util/process_version.gni") | 6 import("//build/util/process_version.gni") |
| 7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
| 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "ENABLE_APP_LIST=$enable_app_list", | 28 "ENABLE_APP_LIST=$enable_app_list", |
| 29 "ENABLE_BACKGROUND=$enable_background", | 29 "ENABLE_BACKGROUND=$enable_background", |
| 30 "ENABLE_BASIC_PRINT_DIALOG=$enable_basic_print_dialog", | 30 "ENABLE_BASIC_PRINT_DIALOG=$enable_basic_print_dialog", |
| 31 "ENABLE_CAPTIVE_PORTAL_DETECTION=$enable_captive_portal_detection", | 31 "ENABLE_CAPTIVE_PORTAL_DETECTION=$enable_captive_portal_detection", |
| 32 "ENABLE_GOOGLE_NOW=$enable_google_now", | 32 "ENABLE_GOOGLE_NOW=$enable_google_now", |
| 33 "ENABLE_HANGOUT_SERVICES_EXTENSION=$enable_hangout_services_extension", | 33 "ENABLE_HANGOUT_SERVICES_EXTENSION=$enable_hangout_services_extension", |
| 34 "ENABLE_ONE_CLICK_SIGNIN=$enable_one_click_signin", | 34 "ENABLE_ONE_CLICK_SIGNIN=$enable_one_click_signin", |
| 35 "ENABLE_PACKAGE_MASH_SERVICES=$enable_package_mash_services", | 35 "ENABLE_PACKAGE_MASH_SERVICES=$enable_package_mash_services", |
| 36 "ENABLE_PLUGIN_INSTALLATION=$enable_plugin_installation", | 36 "ENABLE_PLUGIN_INSTALLATION=$enable_plugin_installation", |
| 37 "ENABLE_SERVICE_DISCOVERY=$enable_service_discovery", | 37 "ENABLE_SERVICE_DISCOVERY=$enable_service_discovery", |
| 38 "ENABLE_SESSION_SERVICE=$enable_session_service", |
| 39 "ENABLE_SUPERVISED_USERS=$enable_supervised_users", |
| 38 "ENABLE_XPC_NOTIFICATIONS=$enable_xpc_notifications", | 40 "ENABLE_XPC_NOTIFICATIONS=$enable_xpc_notifications", |
| 39 "PGO_BUILD=$pgo_build", | 41 "PGO_BUILD=$pgo_build", |
| 40 "USE_VULCANIZE=$use_vulcanize", | 42 "USE_VULCANIZE=$use_vulcanize", |
| 41 ] | 43 ] |
| 42 } | 44 } |
| 43 | 45 |
| 44 # Use a static library here because many test binaries depend on this but don't | 46 # Use a static library here because many test binaries depend on this but don't |
| 45 # require many files from it. This makes linking more efficient. | 47 # require many files from it. This makes linking more efficient. |
| 46 static_library("common") { | 48 static_library("common") { |
| 47 sources = [ | 49 sources = [ |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 "shell_handler_win.mojom", | 668 "shell_handler_win.mojom", |
| 667 ] | 669 ] |
| 668 | 670 |
| 669 public_deps = [ | 671 public_deps = [ |
| 670 "//skia/public/interfaces", | 672 "//skia/public/interfaces", |
| 671 "//url/mojo:url_mojom_gurl", | 673 "//url/mojo:url_mojom_gurl", |
| 672 ] | 674 ] |
| 673 | 675 |
| 674 use_new_wrapper_types = false | 676 use_new_wrapper_types = false |
| 675 } | 677 } |
| OLD | NEW |