| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "web_ui_user_script_loader.h", | 282 "web_ui_user_script_loader.h", |
| 283 ] | 283 ] |
| 284 | 284 |
| 285 public_deps = [ | 285 public_deps = [ |
| 286 "//extensions/browser/app_window", | 286 "//extensions/browser/app_window", |
| 287 "//extensions/browser/guest_view", | 287 "//extensions/browser/guest_view", |
| 288 "//extensions/browser/install", | 288 "//extensions/browser/install", |
| 289 "//extensions/browser/kiosk", | 289 "//extensions/browser/kiosk", |
| 290 "//extensions/browser/updater", | 290 "//extensions/browser/updater", |
| 291 "//extensions/browser/value_store", | 291 "//extensions/browser/value_store", |
| 292 "//ipc", |
| 292 ] | 293 ] |
| 293 | 294 |
| 294 deps += [ | 295 deps += [ |
| 295 "//components/crx_file", | 296 "//components/crx_file", |
| 296 "//components/prefs", | 297 "//components/prefs", |
| 297 "//components/sync", | 298 "//components/sync", |
| 298 "//components/update_client", | 299 "//components/update_client", |
| 299 "//components/variations", | 300 "//components/variations", |
| 300 "//crypto:platform", | 301 "//crypto:platform", |
| 301 "//extensions:extensions_browser_resources", | 302 "//extensions:extensions_browser_resources", |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 "//net:test_support", | 491 "//net:test_support", |
| 491 "//third_party/leveldatabase", | 492 "//third_party/leveldatabase", |
| 492 "//third_party/zlib:zip", | 493 "//third_party/zlib:zip", |
| 493 ] | 494 ] |
| 494 | 495 |
| 495 if (is_chromeos) { | 496 if (is_chromeos) { |
| 496 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 497 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
| 497 deps += [ "//chromeos:test_support" ] | 498 deps += [ "//chromeos:test_support" ] |
| 498 } | 499 } |
| 499 } | 500 } |
| OLD | NEW |