| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "api_request_handler.cc", | 44 "api_request_handler.cc", |
| 45 "api_request_handler.h", | 45 "api_request_handler.h", |
| 46 "api_signature.cc", | 46 "api_signature.cc", |
| 47 "api_signature.h", | 47 "api_signature.h", |
| 48 "api_type_reference_map.cc", | 48 "api_type_reference_map.cc", |
| 49 "api_type_reference_map.h", | 49 "api_type_reference_map.h", |
| 50 "app_window_custom_bindings.cc", | 50 "app_window_custom_bindings.cc", |
| 51 "app_window_custom_bindings.h", | 51 "app_window_custom_bindings.h", |
| 52 "argument_spec.cc", | 52 "argument_spec.cc", |
| 53 "argument_spec.h", | 53 "argument_spec.h", |
| 54 "binding_access_checker.cc", |
| 55 "binding_access_checker.h", |
| 54 "binding_generating_native_handler.cc", | 56 "binding_generating_native_handler.cc", |
| 55 "binding_generating_native_handler.h", | 57 "binding_generating_native_handler.h", |
| 56 "blob_native_handler.cc", | 58 "blob_native_handler.cc", |
| 57 "blob_native_handler.h", | 59 "blob_native_handler.h", |
| 58 "chrome_setting.cc", | 60 "chrome_setting.cc", |
| 59 "chrome_setting.h", | 61 "chrome_setting.h", |
| 60 "console.cc", | 62 "console.cc", |
| 61 "console.h", | 63 "console.h", |
| 62 "content_setting.cc", | 64 "content_setting.cc", |
| 63 "content_setting.h", | 65 "content_setting.h", |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 "api_invocation_errors_unittest.cc", | 320 "api_invocation_errors_unittest.cc", |
| 319 "api_last_error_unittest.cc", | 321 "api_last_error_unittest.cc", |
| 320 "api_request_handler_unittest.cc", | 322 "api_request_handler_unittest.cc", |
| 321 "api_signature_unittest.cc", | 323 "api_signature_unittest.cc", |
| 322 "api_test_base.cc", | 324 "api_test_base.cc", |
| 323 "api_test_base.h", | 325 "api_test_base.h", |
| 324 "api_test_base_unittest.cc", | 326 "api_test_base_unittest.cc", |
| 325 "argument_spec_builder.cc", | 327 "argument_spec_builder.cc", |
| 326 "argument_spec_builder.h", | 328 "argument_spec_builder.h", |
| 327 "argument_spec_unittest.cc", | 329 "argument_spec_unittest.cc", |
| 330 "binding_access_checker_unittest.cc", |
| 328 "declarative_event_unittest.cc", | 331 "declarative_event_unittest.cc", |
| 329 "event_emitter_unittest.cc", | 332 "event_emitter_unittest.cc", |
| 330 "event_unittest.cc", | 333 "event_unittest.cc", |
| 331 "gc_callback_unittest.cc", | 334 "gc_callback_unittest.cc", |
| 332 "json_schema_unittest.cc", | 335 "json_schema_unittest.cc", |
| 333 "messaging_utils_unittest.cc", | 336 "messaging_utils_unittest.cc", |
| 334 "module_system_test.cc", | 337 "module_system_test.cc", |
| 335 "module_system_test.h", | 338 "module_system_test.h", |
| 336 "module_system_unittest.cc", | 339 "module_system_unittest.cc", |
| 337 "mojo/keep_alive_client_unittest.cc", | 340 "mojo/keep_alive_client_unittest.cc", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "//ui/base", | 372 "//ui/base", |
| 370 ] | 373 ] |
| 371 | 374 |
| 372 if (enable_wifi_display && proprietary_codecs) { | 375 if (enable_wifi_display && proprietary_codecs) { |
| 373 sources += [ | 376 sources += [ |
| 374 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 377 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 375 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 378 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 376 ] | 379 ] |
| 377 } | 380 } |
| 378 } | 381 } |
| OLD | NEW |