Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 606953002: Move components/native_app_window to extensions/components/native_app_window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: patchfail/rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 "//components/gcm_driver", 69 "//components/gcm_driver",
70 "//components/google/core/browser", 70 "//components/google/core/browser",
71 "//components/history/core/browser", 71 "//components/history/core/browser",
72 "//components/history/core/common", 72 "//components/history/core/common",
73 "//components/infobars/core", 73 "//components/infobars/core",
74 "//components/invalidation", 74 "//components/invalidation",
75 "//components/metrics:gpu", 75 "//components/metrics:gpu",
76 "//components/metrics:net", 76 "//components/metrics:net",
77 "//components/metrics:profiler", 77 "//components/metrics:profiler",
78 "//components/metrics/proto:proto", 78 "//components/metrics/proto:proto",
79 "//components/native_app_window",
tapted 2014/09/29 06:03:31 this dep here is not needed at all, since it's pul
80 "//components/navigation_metrics", 79 "//components/navigation_metrics",
81 "//components/network_time", 80 "//components/network_time",
82 "//components/omaha_query_params", 81 "//components/omaha_query_params",
83 "//components/omnibox", 82 "//components/omnibox",
84 "//components/os_crypt", 83 "//components/os_crypt",
85 "//components/password_manager/core/browser", 84 "//components/password_manager/core/browser",
86 "//components/password_manager/core/common", 85 "//components/password_manager/core/common",
87 "//components/policy:policy_component", 86 "//components/policy:policy_component",
88 "//components/precache/core", 87 "//components/precache/core",
89 "//components/query_parser", 88 "//components/query_parser",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 ] 225 ]
227 } 226 }
228 if (is_mac) { 227 if (is_mac) {
229 sources += rebase_path(gypi_values.chrome_browser_mac_sources, 228 sources += rebase_path(gypi_values.chrome_browser_mac_sources,
230 ".", "//chrome") 229 ".", "//chrome")
231 deps += [ 230 deps += [
232 #"app_shim" TODO(GYP) 231 #"app_shim" TODO(GYP)
233 #"browser_app_shim" TODO(GYP) 232 #"browser_app_shim" TODO(GYP)
234 ] 233 ]
235 } 234 }
236 if (!toolkit_views) {
237 deps -= [ "//components/native_app_window" ]
238 }
239 if (cld2_data_source == "component") { 235 if (cld2_data_source == "component") {
240 sources += [ 236 sources += [
241 "component_updater/cld_component_installer.cc", 237 "component_updater/cld_component_installer.cc",
242 "component_updater/cld_component_installer.h", 238 "component_updater/cld_component_installer.h",
243 ] 239 ]
244 } 240 }
245 if (enable_extensions) { 241 if (enable_extensions) {
246 public_deps += [ "//chrome/browser/extensions" ] 242 public_deps += [ "//chrome/browser/extensions" ]
247 deps += [ 243 deps += [
248 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr oto", 244 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr oto",
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 ] 920 ]
925 } 921 }
926 922
927 if (enable_wifi_bootstrapping) { 923 if (enable_wifi_bootstrapping) {
928 sources += [ 924 sources += [
929 "local_discovery/wifi/mock_wifi_manager.cc", 925 "local_discovery/wifi/mock_wifi_manager.cc",
930 "local_discovery/wifi/mock_wifi_manager.h", 926 "local_discovery/wifi/mock_wifi_manager.h",
931 ] 927 ]
932 } 928 }
933 } 929 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698