| 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 12 matching lines...) Expand all Loading... |
| 23 "api_binding_bridge.h", | 23 "api_binding_bridge.h", |
| 24 "api_binding_hooks.cc", | 24 "api_binding_hooks.cc", |
| 25 "api_binding_hooks.h", | 25 "api_binding_hooks.h", |
| 26 "api_binding_types.h", | 26 "api_binding_types.h", |
| 27 "api_bindings_system.cc", | 27 "api_bindings_system.cc", |
| 28 "api_bindings_system.h", | 28 "api_bindings_system.h", |
| 29 "api_definitions_natives.cc", | 29 "api_definitions_natives.cc", |
| 30 "api_definitions_natives.h", | 30 "api_definitions_natives.h", |
| 31 "api_event_handler.cc", | 31 "api_event_handler.cc", |
| 32 "api_event_handler.h", | 32 "api_event_handler.h", |
| 33 "api_last_error.cc", |
| 34 "api_last_error.h", |
| 33 "api_request_handler.cc", | 35 "api_request_handler.cc", |
| 34 "api_request_handler.h", | 36 "api_request_handler.h", |
| 35 "api_signature.cc", | 37 "api_signature.cc", |
| 36 "api_signature.h", | 38 "api_signature.h", |
| 37 "app_window_custom_bindings.cc", | 39 "app_window_custom_bindings.cc", |
| 38 "app_window_custom_bindings.h", | 40 "app_window_custom_bindings.h", |
| 39 "argument_spec.cc", | 41 "argument_spec.cc", |
| 40 "argument_spec.h", | 42 "argument_spec.h", |
| 41 "binding_generating_native_handler.cc", | 43 "binding_generating_native_handler.cc", |
| 42 "binding_generating_native_handler.h", | 44 "binding_generating_native_handler.h", |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 sources = [ | 279 sources = [ |
| 278 "activity_log_converter_strategy_unittest.cc", | 280 "activity_log_converter_strategy_unittest.cc", |
| 279 "api/mojo_private/mojo_private_unittest.cc", | 281 "api/mojo_private/mojo_private_unittest.cc", |
| 280 "api_binding_test.cc", | 282 "api_binding_test.cc", |
| 281 "api_binding_test.h", | 283 "api_binding_test.h", |
| 282 "api_binding_test_util.cc", | 284 "api_binding_test_util.cc", |
| 283 "api_binding_test_util.h", | 285 "api_binding_test_util.h", |
| 284 "api_binding_unittest.cc", | 286 "api_binding_unittest.cc", |
| 285 "api_bindings_system_unittest.cc", | 287 "api_bindings_system_unittest.cc", |
| 286 "api_event_handler_unittest.cc", | 288 "api_event_handler_unittest.cc", |
| 289 "api_last_error_unittest.cc", |
| 287 "api_request_handler_unittest.cc", | 290 "api_request_handler_unittest.cc", |
| 288 "api_test_base.cc", | 291 "api_test_base.cc", |
| 289 "api_test_base.h", | 292 "api_test_base.h", |
| 290 "api_test_base_unittest.cc", | 293 "api_test_base_unittest.cc", |
| 291 "argument_spec_unittest.cc", | 294 "argument_spec_unittest.cc", |
| 292 "event_unittest.cc", | 295 "event_unittest.cc", |
| 293 "gc_callback_unittest.cc", | 296 "gc_callback_unittest.cc", |
| 294 "json_schema_unittest.cc", | 297 "json_schema_unittest.cc", |
| 295 "messaging_utils_unittest.cc", | 298 "messaging_utils_unittest.cc", |
| 296 "module_system_test.cc", | 299 "module_system_test.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 "//ui/base", | 334 "//ui/base", |
| 332 ] | 335 ] |
| 333 | 336 |
| 334 if (enable_wifi_display && proprietary_codecs) { | 337 if (enable_wifi_display && proprietary_codecs) { |
| 335 sources += [ | 338 sources += [ |
| 336 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 339 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 337 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 340 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 338 ] | 341 ] |
| 339 } | 342 } |
| 340 } | 343 } |
| OLD | NEW |