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

Side by Side Diff: components/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: respond to comments 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
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | components/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 # Collection of all components. You wouldn't link to this, but this is rather 8 # Collection of all components. You wouldn't link to this, but this is rather
9 # to reference the files so they can be compiled by the build system. 9 # to reference the files so they can be compiled by the build system.
10 group("all_components") { 10 group("all_components") {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "//components/history/core/common", 44 "//components/history/core/common",
45 "//components/history/core/test", 45 "//components/history/core/test",
46 "//components/infobars/core", 46 "//components/infobars/core",
47 "//components/infobars/test:test_support", 47 "//components/infobars/test:test_support",
48 "//components/invalidation", 48 "//components/invalidation",
49 "//components/json_schema", 49 "//components/json_schema",
50 "//components/keyed_service/content", 50 "//components/keyed_service/content",
51 "//components/language_usage_metrics", 51 "//components/language_usage_metrics",
52 "//components/leveldb_proto", 52 "//components/leveldb_proto",
53 "//components/metrics", 53 "//components/metrics",
54 "//components/native_app_window",
55 "//components/navigation_interception", 54 "//components/navigation_interception",
56 "//components/navigation_metrics", 55 "//components/navigation_metrics",
57 "//components/network_time", 56 "//components/network_time",
58 "//components/omaha_query_params", 57 "//components/omaha_query_params",
59 "//components/omnibox", 58 "//components/omnibox",
60 "//components/onc", 59 "//components/onc",
61 "//components/os_crypt", 60 "//components/os_crypt",
62 "//components/pairing", 61 "//components/pairing",
63 "//components/password_manager/content/browser", 62 "//components/password_manager/content/browser",
64 "//components/password_manager/core/browser", 63 "//components/password_manager/core/browser",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 "//components/webdata/common", 105 "//components/webdata/common",
107 "//components/wifi", 106 "//components/wifi",
108 ] 107 ]
109 108
110 if (!is_win && !is_mac) { 109 if (!is_win && !is_mac) {
111 deps -= [ "//components/wifi" ] 110 deps -= [ "//components/wifi" ]
112 } 111 }
113 if (!is_chromeos) { 112 if (!is_chromeos) {
114 deps -= [ "//components/pairing" ] 113 deps -= [ "//components/pairing" ]
115 } 114 }
116 if (!toolkit_views) {
117 deps -= [ "//components/native_app_window" ]
118 }
119
120 if (is_ios) { 115 if (is_ios) {
121 deps -= [ "//components/keyed_service/content" ] 116 deps -= [ "//components/keyed_service/content" ]
122 } 117 }
123 118
124 if (!enable_plugins) { 119 if (!enable_plugins) {
125 deps -= [ 120 deps -= [
126 "//components/pdf/browser", 121 "//components/pdf/browser",
127 "//components/pdf/common", 122 "//components/pdf/common",
128 "//components/pdf/renderer", 123 "//components/pdf/renderer",
129 ] 124 ]
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 ] 227 ]
233 228
234 # TODO(GYP) need this target. 229 # TODO(GYP) need this target.
235 #'breakpad/app/crash_keys_win_unittest.cc', 230 #'breakpad/app/crash_keys_win_unittest.cc',
236 231
237 # Precache tests need these defines. 232 # Precache tests need these defines.
238 #configs += [ "//components/precache/core:precache_config" ] 233 #configs += [ "//components/precache/core:precache_config" ]
239 } 234 }
240 235
241 } 236 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | components/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698