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 group("browser") { | 8 group("browser") { |
9 public_deps = [ | 9 public_deps = [ |
10 "//extensions/browser:browser_context_keyed_service_factories", | 10 "//extensions/browser:browser_context_keyed_service_factories", |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 "//extensions/shell:app_shell_lib", | 362 "//extensions/shell:app_shell_lib", |
363 "//extensions/shell:browser_tests", | 363 "//extensions/shell:browser_tests", |
364 "//net:test_support", | 364 "//net:test_support", |
365 ] | 365 ] |
366 | 366 |
367 if (is_mac) { | 367 if (is_mac) { |
368 # Needed for App Shell.app's Helper. | 368 # Needed for App Shell.app's Helper. |
369 deps += [ "//extensions/shell:app_shell" ] | 369 deps += [ "//extensions/shell:app_shell" ] |
370 } | 370 } |
371 if (is_chromeos) { | 371 if (is_chromeos) { |
372 sources += [ | 372 sources += [ "api/virtual_keyboard/virtual_keyboard_apitest.cc" ] |
373 "api/media_perception_private/media_perception_private_apitest.cc", | |
374 "api/virtual_keyboard/virtual_keyboard_apitest.cc", | |
375 ] | |
376 | 373 |
377 deps += [ | 374 deps += [ "//chromeos" ] |
378 "//chromeos", | |
379 "//chromeos:media_perception_proto", | |
380 ] | |
381 } | 375 } |
382 } | 376 } |
383 | 377 |
384 source_set("test_support") { | 378 source_set("test_support") { |
385 testonly = true | 379 testonly = true |
386 sources = [ | 380 sources = [ |
387 "preload_check_test_util.cc", | 381 "preload_check_test_util.cc", |
388 "preload_check_test_util.h", | 382 "preload_check_test_util.h", |
389 ] | 383 ] |
390 | 384 |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 "//ipc:test_support", | 504 "//ipc:test_support", |
511 "//net:test_support", | 505 "//net:test_support", |
512 "//storage/browser:test_support", | 506 "//storage/browser:test_support", |
513 "//third_party/leveldatabase", | 507 "//third_party/leveldatabase", |
514 "//third_party/zlib:zip", | 508 "//third_party/zlib:zip", |
515 ] | 509 ] |
516 | 510 |
517 if (is_chromeos) { | 511 if (is_chromeos) { |
518 sources += [ | 512 sources += [ |
519 "api/audio/audio_device_id_calculator_unittest.cc", | 513 "api/audio/audio_device_id_calculator_unittest.cc", |
520 "api/media_perception_private/conversion_utils_unittest.cc", | |
521 "api/media_perception_private/media_perception_api_manager_unittest.cc", | |
522 "api/webcam_private/visca_webcam_unittest.cc", | 514 "api/webcam_private/visca_webcam_unittest.cc", |
523 ] | 515 ] |
524 | 516 |
525 deps += [ | 517 deps += [ "//chromeos:test_support" ] |
526 "//chromeos:media_perception_proto", | |
527 "//chromeos:test_support", | |
528 ] | |
529 } | 518 } |
530 } | 519 } |
OLD | NEW |