| 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "api_last_error_unittest.cc", | 319 "api_last_error_unittest.cc", |
| 320 "api_request_handler_unittest.cc", | 320 "api_request_handler_unittest.cc", |
| 321 "api_signature_unittest.cc", | 321 "api_signature_unittest.cc", |
| 322 "api_test_base.cc", | 322 "api_test_base.cc", |
| 323 "api_test_base.h", | 323 "api_test_base.h", |
| 324 "api_test_base_unittest.cc", | 324 "api_test_base_unittest.cc", |
| 325 "argument_spec_builder.cc", | 325 "argument_spec_builder.cc", |
| 326 "argument_spec_builder.h", | 326 "argument_spec_builder.h", |
| 327 "argument_spec_unittest.cc", | 327 "argument_spec_unittest.cc", |
| 328 "declarative_event_unittest.cc", | 328 "declarative_event_unittest.cc", |
| 329 "event_emitter_unittest.cc", |
| 329 "event_unittest.cc", | 330 "event_unittest.cc", |
| 330 "gc_callback_unittest.cc", | 331 "gc_callback_unittest.cc", |
| 331 "json_schema_unittest.cc", | 332 "json_schema_unittest.cc", |
| 332 "messaging_utils_unittest.cc", | 333 "messaging_utils_unittest.cc", |
| 333 "module_system_test.cc", | 334 "module_system_test.cc", |
| 334 "module_system_test.h", | 335 "module_system_test.h", |
| 335 "module_system_unittest.cc", | 336 "module_system_unittest.cc", |
| 336 "mojo/keep_alive_client_unittest.cc", | 337 "mojo/keep_alive_client_unittest.cc", |
| 337 "native_extension_bindings_system_unittest.cc", | 338 "native_extension_bindings_system_unittest.cc", |
| 338 "safe_builtins_unittest.cc", | 339 "safe_builtins_unittest.cc", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 368 "//ui/base", | 369 "//ui/base", |
| 369 ] | 370 ] |
| 370 | 371 |
| 371 if (enable_wifi_display && proprietary_codecs) { | 372 if (enable_wifi_display && proprietary_codecs) { |
| 372 sources += [ | 373 sources += [ |
| 373 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 374 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 374 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 375 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 375 ] | 376 ] |
| 376 } | 377 } |
| 377 } | 378 } |
| OLD | NEW |