Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//chromecast/chromecast.gni") | 7 import("//chromecast/chromecast.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 128 ] | 128 ] |
| 129 | 129 |
| 130 deps = [ | 130 deps = [ |
| 131 "//base", | 131 "//base", |
| 132 "//media", | 132 "//media", |
| 133 "//testing/gmock", | 133 "//testing/gmock", |
| 134 ] | 134 ] |
| 135 } | 135 } |
| 136 | 136 |
| 137 shared_library("libcast_governor_1.0") { | 137 shared_library("libcast_governor_1.0") { |
| 138 deps = [ | |
| 139 ":governor", | |
| 140 ] | |
| 141 } | |
| 142 | |
| 143 test("libcast_governor_unittests") { | |
| 144 sources = [ | |
| 145 "post_processors/governor_unittest.cc", | |
| 146 ] | |
| 147 deps = [ | |
| 148 ":governor", | |
| 149 "//base", | |
| 150 "//base/test:run_all_unittests", | |
| 151 "//media", | |
| 152 "//testing/gtest", | |
| 153 ] | |
| 154 } | |
| 155 | |
| 156 source_set("governor") { | |
| 138 sources = [ | 157 sources = [ |
| 139 "post_processors/governor_shlib.cc", | 158 "post_processors/governor_shlib.cc", |
| 159 "post_processors/governor_shlib.h", | |
| 140 ] | 160 ] |
| 141 | |
| 142 deps = [ | 161 deps = [ |
| 143 ":slew_volume", | 162 ":slew_volume", |
| 144 "//base", | 163 "//base", |
| 145 "//chromecast/base", | 164 "//chromecast/base", |
| 146 "//chromecast/public/media", | 165 "//chromecast/public/media", |
| 147 ] | 166 ] |
| 167 public_configs = [ "//chromecast/public:public_config" ] | |
|
bcf
2017/05/03 06:14:06
Why is this needed?
bshaya
2017/05/03 16:51:55
This config adds //chromecast/public as an include
| |
| 148 } | 168 } |
| OLD | NEW |