| 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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 # Target naming conventions: | 9 # Target naming conventions: |
| 10 # - converters: C++/Mojo type converters. | 10 # - converters: C++/Mojo type converters. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "media_type_converters.h", | 25 "media_type_converters.h", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 deps = [ | 28 deps = [ |
| 29 "//base", | 29 "//base", |
| 30 "//media", | 30 "//media", |
| 31 "//media/mojo/interfaces", | 31 "//media/mojo/interfaces", |
| 32 "//mojo/common", | 32 "//mojo/common", |
| 33 "//mojo/converters/geometry", | 33 "//mojo/converters/geometry", |
| 34 "//mojo/environment:chromium", | 34 "//mojo/environment:chromium", |
| 35 "//skia", | |
| 36 "//third_party/mojo/src/mojo/public/c/system:for_component", | 35 "//third_party/mojo/src/mojo/public/c/system:for_component", |
| 37 "//third_party/mojo_services/src/geometry/public/interfaces", | 36 "//third_party/mojo_services/src/geometry/public/interfaces", |
| 38 ] | 37 ] |
| 39 } | 38 } |
| 40 | 39 |
| 41 source_set("cdm_proxy") { | 40 source_set("cdm_proxy") { |
| 42 deps = [ | 41 deps = [ |
| 43 ":converters", | 42 ":converters", |
| 44 "//base", | 43 "//base", |
| 45 "//media", | 44 "//media", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 group("tests") { | 200 group("tests") { |
| 202 testonly = true | 201 testonly = true |
| 203 deps = [ | 202 deps = [ |
| 204 ":media_mojo_unittests", | 203 ":media_mojo_unittests", |
| 205 ] | 204 ] |
| 206 | 205 |
| 207 if (!is_component_build) { | 206 if (!is_component_build) { |
| 208 deps += [ ":media_test" ] | 207 deps += [ ":media_test" ] |
| 209 } | 208 } |
| 210 } | 209 } |
| OLD | NEW |