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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 "module_system_test.cc", | 295 "module_system_test.cc", |
296 "module_system_test.h", | 296 "module_system_test.h", |
297 "module_system_unittest.cc", | 297 "module_system_unittest.cc", |
298 "mojo/keep_alive_client_unittest.cc", | 298 "mojo/keep_alive_client_unittest.cc", |
299 "native_extension_bindings_system_unittest.cc", | 299 "native_extension_bindings_system_unittest.cc", |
300 "safe_builtins_unittest.cc", | 300 "safe_builtins_unittest.cc", |
301 "scoped_web_frame.cc", | 301 "scoped_web_frame.cc", |
302 "scoped_web_frame.h", | 302 "scoped_web_frame.h", |
303 "script_context_set_unittest.cc", | 303 "script_context_set_unittest.cc", |
304 "script_context_unittest.cc", | 304 "script_context_unittest.cc", |
| 305 "string_source_map.cc", |
| 306 "string_source_map.h", |
| 307 "test_v8_extension_configuration.cc", |
| 308 "test_v8_extension_configuration.h", |
305 "utils_unittest.cc", | 309 "utils_unittest.cc", |
306 ] | 310 ] |
307 | 311 |
308 deps = [ | 312 deps = [ |
309 ":renderer", | 313 ":renderer", |
310 "//base", | 314 "//base", |
311 "//components/crx_file:crx_file", | 315 "//components/crx_file:crx_file", |
312 "//content/public/child", | 316 "//content/public/child", |
313 "//extensions:extensions_renderer_resources", | 317 "//extensions:extensions_renderer_resources", |
314 "//extensions:test_support", | 318 "//extensions:test_support", |
(...skipping 10 matching lines...) Expand all Loading... |
325 "//ui/base", | 329 "//ui/base", |
326 ] | 330 ] |
327 | 331 |
328 if (enable_wifi_display && proprietary_codecs) { | 332 if (enable_wifi_display && proprietary_codecs) { |
329 sources += [ | 333 sources += [ |
330 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 334 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
331 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 335 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
332 ] | 336 ] |
333 } | 337 } |
334 } | 338 } |
OLD | NEW |