| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 buildflag_header("features") { | 9 buildflag_header("features") { |
| 10 header = "features.h" | 10 header = "features.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 } | 83 } |
| 84 | 84 |
| 85 deps = [ | 85 deps = [ |
| 86 "//base", | 86 "//base", |
| 87 "//base/test:test_support", | 87 "//base/test:test_support", |
| 88 "//media", | 88 "//media", |
| 89 "//media:cdm_api", | 89 "//media:cdm_api", |
| 90 "//media/base:test_support", | 90 "//media/base:test_support", |
| 91 "//media/mojo/clients", | 91 "//media/mojo/clients", |
| 92 "//media/mojo/common", | 92 "//media/mojo/common", |
| 93 "//media/mojo/common:mojo_shared_buffer_video_frame", |
| 93 "//media/mojo/interfaces", | 94 "//media/mojo/interfaces", |
| 94 "//media/mojo/services:lib", | 95 "//media/mojo/services:lib", |
| 95 "//services/service_manager/tests:interfaces", | 96 "//services/service_manager/tests:interfaces", |
| 96 "//testing/gmock", | 97 "//testing/gmock", |
| 97 "//testing/gtest", | 98 "//testing/gtest", |
| 98 "//ui/gfx:test_support", | 99 "//ui/gfx:test_support", |
| 99 ] | 100 ] |
| 100 | 101 |
| 101 if (is_android) { | 102 if (is_android) { |
| 102 deps += [ | 103 deps += [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 113 "/ignore:4217", | 114 "/ignore:4217", |
| 114 "/ignore:4049", | 115 "/ignore:4049", |
| 115 ] | 116 ] |
| 116 } | 117 } |
| 117 | 118 |
| 118 deps = [ | 119 deps = [ |
| 119 ":unit_tests", | 120 ":unit_tests", |
| 120 "//mojo/edk/test:run_all_unittests", | 121 "//mojo/edk/test:run_all_unittests", |
| 121 ] | 122 ] |
| 122 } | 123 } |
| OLD | NEW |