| 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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 source_set("common_constants") { | 8 source_set("common_constants") { |
| 9 sources = [ | 9 sources = [ |
| 10 "constants.cc", | 10 "constants.cc", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 "value_counter_unittest.cc", | 341 "value_counter_unittest.cc", |
| 342 ] | 342 ] |
| 343 | 343 |
| 344 deps = [ | 344 deps = [ |
| 345 ":common", | 345 ":common", |
| 346 "//base", | 346 "//base", |
| 347 "//base:i18n", | 347 "//base:i18n", |
| 348 "//base/test:test_support", | 348 "//base/test:test_support", |
| 349 "//components/crx_file", | 349 "//components/crx_file", |
| 350 "//device/usb", | 350 "//device/usb", |
| 351 "//device/usb:test_support", |
| 351 "//extensions:extensions_resources", | 352 "//extensions:extensions_resources", |
| 352 | 353 |
| 353 # TODO(brettw) these tests should not be including headers from browser. | 354 # TODO(brettw) these tests should not be including headers from browser. |
| 354 "//extensions:test_support", | 355 "//extensions:test_support", |
| 355 "//extensions/browser", | 356 "//extensions/browser", |
| 356 "//extensions/strings", | 357 "//extensions/strings", |
| 357 "//ipc", | 358 "//ipc", |
| 358 "//testing/gmock", | 359 "//testing/gmock", |
| 359 "//testing/gtest", | 360 "//testing/gtest", |
| 360 "//ui/base", | 361 "//ui/base", |
| 361 "//ui/gfx", | 362 "//ui/gfx", |
| 362 "//url", | 363 "//url", |
| 363 ] | 364 ] |
| 364 } | 365 } |
| 365 } # enable_extensions | 366 } # enable_extensions |
| OLD | NEW |