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

Side by Side Diff: media/mojo/BUILD.gn

Issue 1968833002: media: Make media mojo services a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn style Created 4 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
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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 group("tests") { 7 group("tests") {
8 testonly = true 8 testonly = true
9 deps = [ 9 deps = [
10 ":media_mojo_unittests", 10 ":media_mojo_unittests",
11 ] 11 ]
12 } 12 }
13 13
14 test("media_mojo_unittests") { 14 test("media_mojo_unittests") {
15 sources = [ 15 sources = [
16 "common/media_type_converters_unittest.cc", 16 "common/media_type_converters_unittest.cc",
17 "common/mojo_shared_buffer_video_frame_unittest.cc", 17 "common/mojo_shared_buffer_video_frame_unittest.cc",
18 "services/mojo_cdm_allocator_unittest.cc", 18 "services/mojo_cdm_allocator_unittest.cc",
19 ] 19 ]
20 20
21 deps = [ 21 deps = [
22 "//base", 22 "//base",
23 "//base/test:test_support", 23 "//base/test:test_support",
24 "//media", 24 "//media",
25 "//media/base:test_support", 25 "//media/base:test_support",
26 "//media/mojo/common", 26 "//media/mojo/common",
27 "//media/mojo/interfaces", 27 "//media/mojo/interfaces",
28 "//media/mojo/services:cdm_service", 28 "//media/mojo/services",
29 "//mojo/edk/system", 29 "//mojo/edk/system",
30 "//mojo/edk/test:run_all_unittests", 30 "//mojo/edk/test:run_all_unittests",
31 "//testing/gmock", 31 "//testing/gmock",
32 "//testing/gtest", 32 "//testing/gtest",
33 "//ui/gfx:test_support", 33 "//ui/gfx:test_support",
34 ] 34 ]
35 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698