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 assert(enable_extensions) | 8 assert(enable_extensions) |
9 | 9 |
10 source_set("renderer") { | 10 source_set("renderer") { |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 "string_source_map.cc", | 306 "string_source_map.cc", |
307 "string_source_map.h", | 307 "string_source_map.h", |
308 "test_v8_extension_configuration.cc", | 308 "test_v8_extension_configuration.cc", |
309 "test_v8_extension_configuration.h", | 309 "test_v8_extension_configuration.h", |
310 "utils_unittest.cc", | 310 "utils_unittest.cc", |
311 ] | 311 ] |
312 | 312 |
313 deps = [ | 313 deps = [ |
314 ":renderer", | 314 ":renderer", |
315 "//base", | 315 "//base", |
| 316 "//base/test:test_support", |
316 "//components/crx_file:crx_file", | 317 "//components/crx_file:crx_file", |
317 "//content/public/child", | 318 "//content/public/child", |
318 "//extensions:extensions_renderer_resources", | 319 "//extensions:extensions_renderer_resources", |
319 "//extensions:test_support", | 320 "//extensions:test_support", |
320 "//gin:gin_test", | 321 "//gin:gin_test", |
321 | 322 |
322 # TODO(brettw) these tests should not be including headers from browser. | 323 # TODO(brettw) these tests should not be including headers from browser. |
323 "//extensions/browser", | 324 "//extensions/browser", |
324 "//extensions/common", | 325 "//extensions/common", |
325 "//gin", | 326 "//gin", |
326 "//mojo/edk/js", | 327 "//mojo/edk/js", |
327 "//testing/gmock", | 328 "//testing/gmock", |
328 "//testing/gtest", | 329 "//testing/gtest", |
329 "//third_party/WebKit/public:blink", | 330 "//third_party/WebKit/public:blink", |
330 "//ui/base", | 331 "//ui/base", |
331 ] | 332 ] |
332 | 333 |
333 if (enable_wifi_display && proprietary_codecs) { | 334 if (enable_wifi_display && proprietary_codecs) { |
334 sources += [ | 335 sources += [ |
335 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 336 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
336 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 337 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
337 ] | 338 ] |
338 } | 339 } |
339 } | 340 } |
OLD | NEW |