| 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/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
| 10 # produces a conflict for the "grit" template so we have to only include one. | 10 # produces a conflict for the "grit" template so we have to only include one. |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 # # This file is generated by | 143 # # This file is generated by |
| 144 # # chrome/browser/metrics/variations/generate_resources_map.py | 144 # # chrome/browser/metrics/variations/generate_resources_map.py |
| 145 # '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/metrics/variations/gener
ated_resources_map.cc', | 145 # '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/metrics/variations/gener
ated_resources_map.cc', |
| 146 | 146 |
| 147 defines = nacl_defines | 147 defines = nacl_defines |
| 148 | 148 |
| 149 deps += [ | 149 deps += [ |
| 150 "//apps", | 150 "//apps", |
| 151 "//cc", | 151 "//cc", |
| 152 "//chrome/browser/devtools", | 152 "//chrome/browser/devtools", |
| 153 "//chrome/common/extensions/api", | |
| 154 "//chrome/common/extensions/api:api_registration", | |
| 155 "//chrome/installer/util", | 153 "//chrome/installer/util", |
| 156 "//components/autofill/content/browser", | 154 "//components/autofill/content/browser", |
| 157 "//components/dom_distiller/content", | 155 "//components/dom_distiller/content", |
| 158 "//components/keyed_service/content", | 156 "//components/keyed_service/content", |
| 159 "//components/navigation_interception", | 157 "//components/navigation_interception", |
| 160 "//components/password_manager/content/browser", | 158 "//components/password_manager/content/browser", |
| 161 "//components/precache/content", | 159 "//components/precache/content", |
| 162 "//components/sessions", | 160 "//components/sessions", |
| 163 "//components/storage_monitor", | 161 "//components/storage_monitor", |
| 164 "//components/translate/content/browser", | 162 "//components/translate/content/browser", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 if (cld2_data_source == "component") { | 236 if (cld2_data_source == "component") { |
| 239 sources += [ | 237 sources += [ |
| 240 "component_updater/cld_component_installer.cc", | 238 "component_updater/cld_component_installer.cc", |
| 241 "component_updater/cld_component_installer.h", | 239 "component_updater/cld_component_installer.h", |
| 242 ] | 240 ] |
| 243 } | 241 } |
| 244 if (enable_extensions) { | 242 if (enable_extensions) { |
| 245 deps += [ | 243 deps += [ |
| 246 "//chrome/browser/extensions", | 244 "//chrome/browser/extensions", |
| 247 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", | 245 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", |
| 246 "//chrome/common/extensions/api", |
| 247 "//chrome/common/extensions/api:api_registration", |
| 248 ] | 248 ] |
| 249 forward_dependent_configs_from += [ "//chrome/browser/extensions" ] | 249 forward_dependent_configs_from += [ "//chrome/browser/extensions" ] |
| 250 sources += rebase_path(gypi_values.chrome_browser_extensions_sources, | 250 sources += rebase_path(gypi_values.chrome_browser_extensions_sources, |
| 251 ".", "//chrome") | 251 ".", "//chrome") |
| 252 } | 252 } |
| 253 if (enable_background) { | 253 if (enable_background) { |
| 254 sources += rebase_path(gypi_values.chrome_browser_background_sources, | 254 sources += rebase_path(gypi_values.chrome_browser_background_sources, |
| 255 ".", "//chrome") | 255 ".", "//chrome") |
| 256 if (!use_aura || is_win) { | 256 if (!use_aura || is_win) { |
| 257 sources -= [ "background/background_mode_manager_aura.cc" ] | 257 sources -= [ "background/background_mode_manager_aura.cc" ] |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 ] | 928 ] |
| 929 } | 929 } |
| 930 | 930 |
| 931 if (enable_wifi_bootstrapping) { | 931 if (enable_wifi_bootstrapping) { |
| 932 sources += [ | 932 sources += [ |
| 933 "local_discovery/wifi/mock_wifi_manager.cc", | 933 "local_discovery/wifi/mock_wifi_manager.cc", |
| 934 "local_discovery/wifi/mock_wifi_manager.h", | 934 "local_discovery/wifi/mock_wifi_manager.h", |
| 935 ] | 935 ] |
| 936 } | 936 } |
| 937 } | 937 } |
| OLD | NEW |