| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 253 "api/mojo_private/mojo_private_unittest.cc", |
| 254 "api/serial/data_receiver_unittest.cc", | |
| 255 "api/serial/data_sender_unittest.cc", | |
| 256 "api/serial/serial_api_unittest.cc", | |
| 257 "api_test_base.cc", | 254 "api_test_base.cc", |
| 258 "api_test_base.h", | 255 "api_test_base.h", |
| 259 "api_test_base_unittest.cc", | 256 "api_test_base_unittest.cc", |
| 260 "event_unittest.cc", | 257 "event_unittest.cc", |
| 261 "gc_callback_unittest.cc", | 258 "gc_callback_unittest.cc", |
| 262 "json_schema_unittest.cc", | 259 "json_schema_unittest.cc", |
| 263 "messaging_utils_unittest.cc", | 260 "messaging_utils_unittest.cc", |
| 264 "module_system_test.cc", | 261 "module_system_test.cc", |
| 265 "module_system_test.h", | 262 "module_system_test.h", |
| 266 "module_system_unittest.cc", | 263 "module_system_unittest.cc", |
| 267 "mojo/keep_alive_client_unittest.cc", | 264 "mojo/keep_alive_client_unittest.cc", |
| 268 "mojo/stash_client_unittest.cc", | |
| 269 "safe_builtins_unittest.cc", | 265 "safe_builtins_unittest.cc", |
| 270 "scoped_web_frame.cc", | 266 "scoped_web_frame.cc", |
| 271 "scoped_web_frame.h", | 267 "scoped_web_frame.h", |
| 272 "script_context_set_unittest.cc", | 268 "script_context_set_unittest.cc", |
| 273 "script_context_unittest.cc", | 269 "script_context_unittest.cc", |
| 274 "utils_unittest.cc", | 270 "utils_unittest.cc", |
| 275 ] | 271 ] |
| 276 | 272 |
| 277 deps = [ | 273 deps = [ |
| 278 ":renderer", | 274 ":renderer", |
| 279 "//base", | 275 "//base", |
| 280 "//device/serial:test_support", | |
| 281 "//extensions:extensions_renderer_resources", | 276 "//extensions:extensions_renderer_resources", |
| 282 | 277 |
| 283 # TODO(brettw) these tests should not be including headers from browser. | 278 # TODO(brettw) these tests should not be including headers from browser. |
| 284 "//extensions/browser/mojo", | 279 "//extensions/browser/mojo", |
| 285 "//extensions/common", | 280 "//extensions/common", |
| 286 "//gin", | 281 "//gin", |
| 287 "//mojo/edk/js", | 282 "//mojo/edk/js", |
| 288 "//testing/gtest", | 283 "//testing/gtest", |
| 289 "//third_party/WebKit/public:blink", | 284 "//third_party/WebKit/public:blink", |
| 290 "//ui/base", | 285 "//ui/base", |
| 291 ] | 286 ] |
| 292 | 287 |
| 293 if (enable_wifi_display && proprietary_codecs) { | 288 if (enable_wifi_display && proprietary_codecs) { |
| 294 sources += [ | 289 sources += [ |
| 295 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 290 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 296 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 291 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 297 ] | 292 ] |
| 298 } | 293 } |
| 299 } | 294 } |
| OLD | NEW |