| 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     "//mojo/services/geometry/public/interfaces", |  | 
|   36     "//skia", |   35     "//skia", | 
|   37     "//third_party/mojo/src/mojo/public/c/system:for_component", |   36     "//third_party/mojo/src/mojo/public/c/system:for_component", | 
 |   37     "//third_party/mojo_services/src/geometry/public/interfaces", | 
|   38   ] |   38   ] | 
|   39 } |   39 } | 
|   40  |   40  | 
|   41 source_set("cdm_proxy") { |   41 source_set("cdm_proxy") { | 
|   42   deps = [ |   42   deps = [ | 
|   43     ":converters", |   43     ":converters", | 
|   44     "//base", |   44     "//base", | 
|   45     "//media", |   45     "//media", | 
|   46     "//media/mojo/interfaces", |   46     "//media/mojo/interfaces", | 
|   47     "//mojo/common", |   47     "//mojo/common", | 
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  201 group("tests") { |  201 group("tests") { | 
|  202   testonly = true |  202   testonly = true | 
|  203   deps = [ |  203   deps = [ | 
|  204     ":media_mojo_unittests", |  204     ":media_mojo_unittests", | 
|  205   ] |  205   ] | 
|  206  |  206  | 
|  207   if (!is_component_build) { |  207   if (!is_component_build) { | 
|  208     deps += [ ":media_test" ] |  208     deps += [ ":media_test" ] | 
|  209   } |  209   } | 
|  210 } |  210 } | 
| OLD | NEW |