| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//extensions/features/features.gni") |
| 6 | 7 |
| 7 source_set("browser") { | 8 source_set("browser") { |
| 8 sources = [] | 9 sources = [] |
| 9 | 10 |
| 10 deps = [ | 11 deps = [ |
| 11 "//base:i18n", | 12 "//base:i18n", |
| 12 "//components/cast_certificate", | 13 "//components/cast_certificate", |
| 13 "//components/guest_view/browser", | 14 "//components/guest_view/browser", |
| 14 "//components/keyed_service/content", | 15 "//components/keyed_service/content", |
| 15 "//components/keyed_service/core", | 16 "//components/keyed_service/core", |
| 16 "//components/pref_registry", | 17 "//components/pref_registry", |
| 17 "//components/sessions", | 18 "//components/sessions", |
| 18 "//components/update_client", | 19 "//components/update_client", |
| 19 "//components/version_info", | 20 "//components/version_info", |
| 20 "//components/web_cache/browser", | 21 "//components/web_cache/browser", |
| 21 "//components/web_modal", | 22 "//components/web_modal", |
| 22 "//components/zoom", | 23 "//components/zoom", |
| 23 "//content/public/browser", | 24 "//content/public/browser", |
| 24 "//crypto:platform", | 25 "//crypto:platform", |
| 25 "//extensions/browser/api:api_registration", | 26 "//extensions/browser/api:api_registration", |
| 26 "//extensions/common", | 27 "//extensions/common", |
| 27 "//extensions/common/api", | 28 "//extensions/common/api", |
| 29 "//extensions/features", |
| 28 "//extensions/strings", | 30 "//extensions/strings", |
| 29 "//google_apis", | 31 "//google_apis", |
| 30 "//ui/display", | 32 "//ui/display", |
| 31 ] | 33 ] |
| 32 | 34 |
| 33 configs += [ | 35 configs += [ |
| 34 "//build/config:precompiled_headers", | 36 "//build/config:precompiled_headers", |
| 35 | 37 |
| 36 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 38 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 37 "//build/config/compiler:no_size_t_to_int_warning", | 39 "//build/config/compiler:no_size_t_to_int_warning", |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 "//components/update_client", | 431 "//components/update_client", |
| 430 "//components/url_matcher", | 432 "//components/url_matcher", |
| 431 "//components/user_prefs", | 433 "//components/user_prefs", |
| 432 "//content/test:test_support", | 434 "//content/test:test_support", |
| 433 "//device/bluetooth:mocks", | 435 "//device/bluetooth:mocks", |
| 434 "//device/power_save_blocker", | 436 "//device/power_save_blocker", |
| 435 "//extensions:extensions_browser_resources", | 437 "//extensions:extensions_browser_resources", |
| 436 "//extensions:test_support", | 438 "//extensions:test_support", |
| 437 "//extensions/common", | 439 "//extensions/common", |
| 438 "//extensions/common/api", | 440 "//extensions/common/api", |
| 441 "//extensions/features", |
| 439 "//ipc:test_support", | 442 "//ipc:test_support", |
| 440 "//net:test_support", | 443 "//net:test_support", |
| 441 "//third_party/leveldatabase", | 444 "//third_party/leveldatabase", |
| 442 "//third_party/zlib:zip", | 445 "//third_party/zlib:zip", |
| 443 ] | 446 ] |
| 444 | 447 |
| 445 if (is_chromeos) { | 448 if (is_chromeos) { |
| 446 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 449 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
| 447 deps += [ "//chromeos:test_support" ] | 450 deps += [ "//chromeos:test_support" ] |
| 448 } | 451 } |
| 449 } | 452 } |
| OLD | NEW |