| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("browser") { | 8 source_set("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "cast_browser_context.cc", | 10 "cast_browser_context.cc", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 ] | 144 ] |
| 145 | 145 |
| 146 configs += [ ":browser_test_config" ] | 146 configs += [ ":browser_test_config" ] |
| 147 | 147 |
| 148 deps = [ | 148 deps = [ |
| 149 ":test_support", | 149 ":test_support", |
| 150 "//base", | 150 "//base", |
| 151 "//testing/gtest", | 151 "//testing/gtest", |
| 152 "//url", | 152 "//url", |
| 153 ] | 153 ] |
| 154 |
| 155 # TODO(slan): Find a better way to do this. |
| 156 if (chromecast_branding != "public") { |
| 157 deps += [ "//chromecast/internal:cast_shell_internal" ] |
| 158 } |
| 154 } | 159 } |
| OLD | NEW |