Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: extensions/browser/BUILD.gn

Issue 2858353002: MediaPerceptionPrivate API impl and testing. (Closed)
Patch Set: Added media_perception_proto as direct dependency of test targets. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/dbus/proto/media_perception.proto ('k') | extensions/browser/api/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 += [ "api/virtual_keyboard/virtual_keyboard_apitest.cc" ] 372 sources += [
373 "api/media_perception_private/media_perception_private_apitest.cc",
374 "api/virtual_keyboard/virtual_keyboard_apitest.cc",
375 ]
373 376
374 deps += [ "//chromeos" ] 377 deps += [
378 "//chromeos",
379 "//chromeos:media_perception_proto",
380 ]
375 } 381 }
376 } 382 }
377 383
378 source_set("test_support") { 384 source_set("test_support") {
379 testonly = true 385 testonly = true
380 sources = [ 386 sources = [
381 "preload_check_test_util.cc", 387 "preload_check_test_util.cc",
382 "preload_check_test_util.h", 388 "preload_check_test_util.h",
383 ] 389 ]
384 390
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 "//ipc:test_support", 510 "//ipc:test_support",
505 "//net:test_support", 511 "//net:test_support",
506 "//storage/browser:test_support", 512 "//storage/browser:test_support",
507 "//third_party/leveldatabase", 513 "//third_party/leveldatabase",
508 "//third_party/zlib:zip", 514 "//third_party/zlib:zip",
509 ] 515 ]
510 516
511 if (is_chromeos) { 517 if (is_chromeos) {
512 sources += [ 518 sources += [
513 "api/audio/audio_device_id_calculator_unittest.cc", 519 "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",
514 "api/webcam_private/visca_webcam_unittest.cc", 522 "api/webcam_private/visca_webcam_unittest.cc",
515 ] 523 ]
516 524
517 deps += [ "//chromeos:test_support" ] 525 deps += [
526 "//chromeos:media_perception_proto",
527 "//chromeos:test_support",
528 ]
518 } 529 }
519 } 530 }
OLDNEW
« no previous file with comments | « chromeos/dbus/proto/media_perception.proto ('k') | extensions/browser/api/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698