| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 testonly = true | 286 testonly = true |
| 287 sources = [ | 287 sources = [ |
| 288 "activity_log_converter_strategy_unittest.cc", | 288 "activity_log_converter_strategy_unittest.cc", |
| 289 "api/mojo_private/mojo_private_unittest.cc", | 289 "api/mojo_private/mojo_private_unittest.cc", |
| 290 "api_binding_test.cc", | 290 "api_binding_test.cc", |
| 291 "api_binding_test.h", | 291 "api_binding_test.h", |
| 292 "api_binding_test_util.cc", | 292 "api_binding_test_util.cc", |
| 293 "api_binding_test_util.h", | 293 "api_binding_test_util.h", |
| 294 "api_binding_unittest.cc", | 294 "api_binding_unittest.cc", |
| 295 "api_bindings_system_unittest.cc", | 295 "api_bindings_system_unittest.cc", |
| 296 "api_bindings_system_unittest.h", |
| 296 "api_event_handler_unittest.cc", | 297 "api_event_handler_unittest.cc", |
| 297 "api_last_error_unittest.cc", | 298 "api_last_error_unittest.cc", |
| 298 "api_request_handler_unittest.cc", | 299 "api_request_handler_unittest.cc", |
| 299 "api_test_base.cc", | 300 "api_test_base.cc", |
| 300 "api_test_base.h", | 301 "api_test_base.h", |
| 301 "api_test_base_unittest.cc", | 302 "api_test_base_unittest.cc", |
| 302 "argument_spec_unittest.cc", | 303 "argument_spec_unittest.cc", |
| 303 "event_unittest.cc", | 304 "event_unittest.cc", |
| 304 "gc_callback_unittest.cc", | 305 "gc_callback_unittest.cc", |
| 305 "json_schema_unittest.cc", | 306 "json_schema_unittest.cc", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "//ui/base", | 343 "//ui/base", |
| 343 ] | 344 ] |
| 344 | 345 |
| 345 if (enable_wifi_display && proprietary_codecs) { | 346 if (enable_wifi_display && proprietary_codecs) { |
| 346 sources += [ | 347 sources += [ |
| 347 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 348 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 348 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 349 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 349 ] | 350 ] |
| 350 } | 351 } |
| 351 } | 352 } |
| OLD | NEW |