| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 "api_binding_test_util.cc", | 309 "api_binding_test_util.cc", |
| 310 "api_binding_test_util.h", | 310 "api_binding_test_util.h", |
| 311 "api_binding_unittest.cc", | 311 "api_binding_unittest.cc", |
| 312 "api_bindings_system_unittest.cc", | 312 "api_bindings_system_unittest.cc", |
| 313 "api_bindings_system_unittest.h", | 313 "api_bindings_system_unittest.h", |
| 314 "api_event_handler_unittest.cc", | 314 "api_event_handler_unittest.cc", |
| 315 "api_event_listeners_unittest.cc", | 315 "api_event_listeners_unittest.cc", |
| 316 "api_invocation_errors_unittest.cc", | 316 "api_invocation_errors_unittest.cc", |
| 317 "api_last_error_unittest.cc", | 317 "api_last_error_unittest.cc", |
| 318 "api_request_handler_unittest.cc", | 318 "api_request_handler_unittest.cc", |
| 319 "api_signature_unittest.cc", |
| 319 "api_test_base.cc", | 320 "api_test_base.cc", |
| 320 "api_test_base.h", | 321 "api_test_base.h", |
| 321 "api_test_base_unittest.cc", | 322 "api_test_base_unittest.cc", |
| 322 "argument_spec_unittest.cc", | 323 "argument_spec_unittest.cc", |
| 323 "declarative_event_unittest.cc", | 324 "declarative_event_unittest.cc", |
| 324 "event_unittest.cc", | 325 "event_unittest.cc", |
| 325 "gc_callback_unittest.cc", | 326 "gc_callback_unittest.cc", |
| 326 "json_schema_unittest.cc", | 327 "json_schema_unittest.cc", |
| 327 "messaging_utils_unittest.cc", | 328 "messaging_utils_unittest.cc", |
| 328 "module_system_test.cc", | 329 "module_system_test.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 "//ui/base", | 364 "//ui/base", |
| 364 ] | 365 ] |
| 365 | 366 |
| 366 if (enable_wifi_display && proprietary_codecs) { | 367 if (enable_wifi_display && proprietary_codecs) { |
| 367 sources += [ | 368 sources += [ |
| 368 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 369 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 369 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 370 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 370 ] | 371 ] |
| 371 } | 372 } |
| 372 } | 373 } |
| OLD | NEW |