| 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 | 6 |
| 7 assert(enable_extensions) | 7 assert(enable_extensions) |
| 8 | 8 |
| 9 source_set("renderer") { | 9 source_set("renderer") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "//third_party/openh264:encoder", | 243 "//third_party/openh264:encoder", |
| 244 "//third_party/wds:libwds", | 244 "//third_party/wds:libwds", |
| 245 ] | 245 ] |
| 246 } | 246 } |
| 247 } | 247 } |
| 248 | 248 |
| 249 source_set("unit_tests") { | 249 source_set("unit_tests") { |
| 250 testonly = true | 250 testonly = true |
| 251 sources = [ | 251 sources = [ |
| 252 "activity_log_converter_strategy_unittest.cc", | 252 "activity_log_converter_strategy_unittest.cc", |
| 253 "api/mojo_private/mojo_private_unittest.cc", | |
| 254 "api_test_base.cc", | |
| 255 "api_test_base.h", | |
| 256 "api_test_base_unittest.cc", | |
| 257 "event_unittest.cc", | 253 "event_unittest.cc", |
| 258 "gc_callback_unittest.cc", | 254 "gc_callback_unittest.cc", |
| 259 "json_schema_unittest.cc", | 255 "json_schema_unittest.cc", |
| 260 "messaging_utils_unittest.cc", | 256 "messaging_utils_unittest.cc", |
| 261 "module_system_test.cc", | 257 "module_system_test.cc", |
| 262 "module_system_test.h", | 258 "module_system_test.h", |
| 263 "module_system_unittest.cc", | 259 "module_system_unittest.cc", |
| 264 "mojo/keep_alive_client_unittest.cc", | |
| 265 "safe_builtins_unittest.cc", | 260 "safe_builtins_unittest.cc", |
| 266 "scoped_web_frame.cc", | 261 "scoped_web_frame.cc", |
| 267 "scoped_web_frame.h", | 262 "scoped_web_frame.h", |
| 268 "script_context_set_unittest.cc", | 263 "script_context_set_unittest.cc", |
| 269 "script_context_unittest.cc", | 264 "script_context_unittest.cc", |
| 270 "utils_unittest.cc", | 265 "utils_unittest.cc", |
| 271 ] | 266 ] |
| 272 | 267 |
| 273 deps = [ | 268 deps = [ |
| 274 ":renderer", | 269 ":renderer", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 285 "//ui/base", | 280 "//ui/base", |
| 286 ] | 281 ] |
| 287 | 282 |
| 288 if (enable_wifi_display && proprietary_codecs) { | 283 if (enable_wifi_display && proprietary_codecs) { |
| 289 sources += [ | 284 sources += [ |
| 290 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 285 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 291 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 286 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 292 ] | 287 ] |
| 293 } | 288 } |
| 294 } | 289 } |
| OLD | NEW |