Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Use of this source code is governed by a BSD-style license that can be | 1 # Use of this source code is governed by a BSD-style license that can be |
| 2 # found in the LICENSE file. | 2 # found in the LICENSE file. |
| 3 | 3 |
| 4 import("//extensions/features/features.gni") | 4 import("//extensions/features/features.gni") |
| 5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 | 8 |
| 9 assert(enable_extensions) | 9 assert(enable_extensions) |
| 10 | 10 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 249 # and these moved to the extensions_browsertests target. Currently, we solve | 249 # and these moved to the extensions_browsertests target. Currently, we solve |
| 250 # the problem by making this a source set and linking it into | 250 # the problem by making this a source set and linking it into |
| 251 # //chrome/test:browser_tests. | 251 # //chrome/test:browser_tests. |
| 252 source_set("chrome_extensions_browsertests") { | 252 source_set("chrome_extensions_browsertests") { |
| 253 testonly = true | 253 testonly = true |
| 254 sources = [ | 254 sources = [ |
| 255 "browser/api/app_window/app_window_apitest.cc", | 255 "browser/api/app_window/app_window_apitest.cc", |
| 256 "browser/api/bluetooth/bluetooth_apitest.cc", | 256 "browser/api/bluetooth/bluetooth_apitest.cc", |
| 257 "browser/api/bluetooth/bluetooth_private_apitest.cc", | 257 "browser/api/bluetooth/bluetooth_private_apitest.cc", |
| 258 "browser/api/cast_channel/cast_channel_apitest.cc", | 258 "browser/api/cast_channel/cast_channel_apitest.cc", |
| 259 "browser/api/media_perception_private/media_perception_private_apitest.cc", | |
|
tbarzic
2017/05/12 18:59:20
the api tests should be run under extensions_brows
| |
| 259 "browser/api/runtime/runtime_apitest.cc", | 260 "browser/api/runtime/runtime_apitest.cc", |
| 260 "browser/api/serial/serial_apitest.cc", | 261 "browser/api/serial/serial_apitest.cc", |
| 261 "browser/api/usb/usb_manual_apitest.cc", | 262 "browser/api/usb/usb_manual_apitest.cc", |
| 262 "browser/app_window/app_window_browsertest.cc", | 263 "browser/app_window/app_window_browsertest.cc", |
| 263 "browser/guest_view/extension_options/extension_options_apitest.cc", | 264 "browser/guest_view/extension_options/extension_options_apitest.cc", |
| 264 "browser/guest_view/mime_handler_view/mime_handler_view_browsertest.cc", | 265 "browser/guest_view/mime_handler_view/mime_handler_view_browsertest.cc", |
| 265 "renderer/console_apitest.cc", | 266 "renderer/console_apitest.cc", |
| 266 "renderer/script_context_browsertest.cc", | 267 "renderer/script_context_browsertest.cc", |
| 267 ] | 268 ] |
| 268 | 269 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 355 "//testing/gtest", | 356 "//testing/gtest", |
| 356 "//third_party/hunspell", | 357 "//third_party/hunspell", |
| 357 "//third_party/icu", | 358 "//third_party/icu", |
| 358 "//third_party/libpng", | 359 "//third_party/libpng", |
| 359 "//third_party/zlib", | 360 "//third_party/zlib", |
| 360 "//ui/base:test_support", | 361 "//ui/base:test_support", |
| 361 "//ui/resources:ui_test_pak", | 362 "//ui/resources:ui_test_pak", |
| 362 "//ui/web_dialogs:test_support", | 363 "//ui/web_dialogs:test_support", |
| 363 ] | 364 ] |
| 364 } | 365 } |
| OLD | NEW |