| 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("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.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 source_set("browser") { | 9 source_set("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 test("cast_shell_browser_test") { | 155 test("cast_shell_browser_test") { |
| 156 sources = [ | 156 sources = [ |
| 157 "test/chromecast_shell_browser_test.cc", | 157 "test/chromecast_shell_browser_test.cc", |
| 158 ] | 158 ] |
| 159 | 159 |
| 160 configs += [ ":browser_test_config" ] | 160 configs += [ ":browser_test_config" ] |
| 161 | 161 |
| 162 deps = [ | 162 deps = [ |
| 163 ":test_support", | 163 ":test_support", |
| 164 "//base", | 164 "//base", |
| 165 "//content/test:test_support", |
| 166 "//media/base:test_support", |
| 165 "//testing/gtest", | 167 "//testing/gtest", |
| 166 "//url", | 168 "//url", |
| 167 ] | 169 ] |
| 168 | 170 |
| 169 # TODO(slan): Find a better way to do this. | 171 # TODO(slan): Find a better way to do this. |
| 170 if (chromecast_branding != "public") { | 172 if (chromecast_branding != "public") { |
| 171 deps += [ "//chromecast/internal:cast_shell_internal" ] | 173 deps += [ "//chromecast/internal:cast_shell_internal" ] |
| 172 } | 174 } |
| 173 } | 175 } |
| OLD | NEW |