| 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 import("//extensions/features/features.gni") |
| 7 | 7 |
| 8 group("browser") { | 8 group("browser") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 "//extensions/browser:browser_context_keyed_service_factories", | 10 "//extensions/browser:browser_context_keyed_service_factories", |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 ] | 288 ] |
| 289 | 289 |
| 290 deps += [ | 290 deps += [ |
| 291 "//components/crx_file", | 291 "//components/crx_file", |
| 292 "//components/prefs", | 292 "//components/prefs", |
| 293 "//components/sync", | 293 "//components/sync", |
| 294 "//components/update_client", | 294 "//components/update_client", |
| 295 "//components/variations", | 295 "//components/variations", |
| 296 "//crypto:platform", | 296 "//crypto:platform", |
| 297 "//extensions:extensions_browser_resources", | 297 "//extensions:extensions_browser_resources", |
| 298 "//extensions/common:mojo", | 298 "//extensions/common", |
| 299 "//services/service_manager/public/cpp", | 299 "//services/service_manager/public/cpp", |
| 300 ] | 300 ] |
| 301 } | 301 } |
| 302 } | 302 } |
| 303 | 303 |
| 304 source_set("browser_tests") { | 304 source_set("browser_tests") { |
| 305 testonly = true | 305 testonly = true |
| 306 sources = [ | 306 sources = [ |
| 307 "api/audio/audio_apitest.cc", | 307 "api/audio/audio_apitest.cc", |
| 308 "api/bluetooth_socket/bluetooth_socket_apitest.cc", | 308 "api/bluetooth_socket/bluetooth_socket_apitest.cc", |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 "//net:test_support", | 468 "//net:test_support", |
| 469 "//third_party/leveldatabase", | 469 "//third_party/leveldatabase", |
| 470 "//third_party/zlib:zip", | 470 "//third_party/zlib:zip", |
| 471 ] | 471 ] |
| 472 | 472 |
| 473 if (is_chromeos) { | 473 if (is_chromeos) { |
| 474 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 474 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
| 475 deps += [ "//chromeos:test_support" ] | 475 deps += [ "//chromeos:test_support" ] |
| 476 } | 476 } |
| 477 } | 477 } |
| OLD | NEW |