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

Side by Side Diff: components/BUILD.gn

Issue 1110833003: Move the IsSupported* mime functions out of //net and into //components/mime_util (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 7 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.gypi ('k') | components/components_tests.gyp » ('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 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "//components/history/core/common", 51 "//components/history/core/common",
52 "//components/history/core/test", 52 "//components/history/core/test",
53 "//components/infobars/core", 53 "//components/infobars/core",
54 "//components/invalidation", 54 "//components/invalidation",
55 "//components/json_schema", 55 "//components/json_schema",
56 "//components/keyed_service/content", 56 "//components/keyed_service/content",
57 "//components/language_usage_metrics", 57 "//components/language_usage_metrics",
58 "//components/leveldb_proto", 58 "//components/leveldb_proto",
59 "//components/login", 59 "//components/login",
60 "//components/metrics", 60 "//components/metrics",
61 "//components/mime_util",
61 "//components/navigation_interception", 62 "//components/navigation_interception",
62 "//components/navigation_metrics", 63 "//components/navigation_metrics",
63 "//components/network_time", 64 "//components/network_time",
64 "//components/omnibox", 65 "//components/omnibox",
65 "//components/onc", 66 "//components/onc",
66 "//components/os_crypt", 67 "//components/os_crypt",
67 "//components/packed_ct_ev_whitelist", 68 "//components/packed_ct_ev_whitelist",
68 "//components/pairing", 69 "//components/pairing",
69 "//components/password_manager/content/browser", 70 "//components/password_manager/content/browser",
70 "//components/password_manager/core/browser", 71 "//components/password_manager/core/browser",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 "//components/data_reduction_proxy/core/common:unit_tests", 264 "//components/data_reduction_proxy/core/common:unit_tests",
264 "//components/device_event_log:unit_tests", 265 "//components/device_event_log:unit_tests",
265 "//components/devtools_http_handler:unit_tests", 266 "//components/devtools_http_handler:unit_tests",
266 "//components/dom_distiller/core:unit_tests", 267 "//components/dom_distiller/core:unit_tests",
267 "//components/domain_reliability:unit_tests", 268 "//components/domain_reliability:unit_tests",
268 "//components/favicon_base:unit_tests", 269 "//components/favicon_base:unit_tests",
269 "//components/google/core/browser:unit_tests", 270 "//components/google/core/browser:unit_tests",
270 "//components/invalidation:unittests", 271 "//components/invalidation:unittests",
271 "//components/login:unit_tests", 272 "//components/login:unit_tests",
272 "//components/metrics:unit_tests", 273 "//components/metrics:unit_tests",
274 "//components/mime_util:unit_tests",
273 "//components/omnibox:unit_tests", 275 "//components/omnibox:unit_tests",
274 "//components/ownership:unit_tests", 276 "//components/ownership:unit_tests",
275 "//components/packed_ct_ev_whitelist:unit_tests", 277 "//components/packed_ct_ev_whitelist:unit_tests",
276 "//components/undo:unit_tests", 278 "//components/undo:unit_tests",
277 "//components/update_client:unit_tests", 279 "//components/update_client:unit_tests",
278 "//components/variations:unit_tests", 280 "//components/variations:unit_tests",
279 "//components/web_resource:unit_tests", 281 "//components/web_resource:unit_tests",
280 "//components/webcrypto:unit_tests", 282 "//components/webcrypto:unit_tests",
281 "//components/webdata/common:unit_tests", 283 "//components/webdata/common:unit_tests",
282 284
283 # These are the deps required by the code in this target. 285 # These are the deps required by the code in this target.
284 "//base", 286 "//base",
285 "//base/test:test_support", 287 "//base/test:test_support",
286 "//content/test:test_support", 288 "//content/test:test_support",
289 "//net",
287 "//ui/base", 290 "//ui/base",
288 ] 291 ]
289 data_deps = [ ":components_tests_pak" ] 292 data_deps = [ ":components_tests_pak" ]
290 293
291 if (!is_android && !is_ios) { 294 if (!is_android && !is_ios) {
292 deps += [ "//components/proximity_auth:unit_tests" ] 295 deps += [ "//components/proximity_auth:unit_tests" ]
293 } 296 }
294 297
295 # TODO(GYP) need this target. 298 # TODO(GYP) need this target.
296 #'breakpad/app/crash_keys_win_unittest.cc', 299 #'breakpad/app/crash_keys_win_unittest.cc',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 419
417 deps = [ 420 deps = [
418 "//base", 421 "//base",
419 "//base/test:test_support_perf", 422 "//base/test:test_support_perf",
420 "//testing/gtest", 423 "//testing/gtest",
421 "//testing/perf", 424 "//testing/perf",
422 "//content/test:test_support", 425 "//content/test:test_support",
423 "//components/visitedlink/browser", 426 "//components/visitedlink/browser",
424 ] 427 ]
425 } 428 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698