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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 "//third_party/wds:libwds", | 290 "//third_party/wds:libwds", |
291 ] | 291 ] |
292 } | 292 } |
293 } | 293 } |
294 | 294 |
295 source_set("unit_tests") { | 295 source_set("unit_tests") { |
296 testonly = true | 296 testonly = true |
297 sources = [ | 297 sources = [ |
298 "activity_log_converter_strategy_unittest.cc", | 298 "activity_log_converter_strategy_unittest.cc", |
299 "api/mojo_private/mojo_private_unittest.cc", | 299 "api/mojo_private/mojo_private_unittest.cc", |
| 300 "api_binding_hooks_test_delegate.cc", |
| 301 "api_binding_hooks_test_delegate.h", |
300 "api_binding_js_util_unittest.cc", | 302 "api_binding_js_util_unittest.cc", |
301 "api_binding_test.cc", | 303 "api_binding_test.cc", |
302 "api_binding_test.h", | 304 "api_binding_test.h", |
303 "api_binding_test_util.cc", | 305 "api_binding_test_util.cc", |
304 "api_binding_test_util.h", | 306 "api_binding_test_util.h", |
305 "api_binding_unittest.cc", | 307 "api_binding_unittest.cc", |
306 "api_bindings_system_unittest.cc", | 308 "api_bindings_system_unittest.cc", |
307 "api_bindings_system_unittest.h", | 309 "api_bindings_system_unittest.h", |
308 "api_event_handler_unittest.cc", | 310 "api_event_handler_unittest.cc", |
309 "api_event_listeners_unittest.cc", | 311 "api_event_listeners_unittest.cc", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 "//ui/base", | 358 "//ui/base", |
357 ] | 359 ] |
358 | 360 |
359 if (enable_wifi_display && proprietary_codecs) { | 361 if (enable_wifi_display && proprietary_codecs) { |
360 sources += [ | 362 sources += [ |
361 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 363 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
362 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 364 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
363 ] | 365 ] |
364 } | 366 } |
365 } | 367 } |
OLD | NEW |