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") |
| 6 |
5 source_set("common") { | 7 source_set("common") { |
6 sources = [ | 8 sources = [ |
7 "cast_content_client.cc", | 9 "cast_content_client.cc", |
8 "cast_content_client.h", | 10 "cast_content_client.h", |
9 "cast_resource_delegate.cc", | 11 "cast_resource_delegate.cc", |
10 "cast_resource_delegate.h", | 12 "cast_resource_delegate.h", |
11 "global_descriptors.h", | 13 "global_descriptors.h", |
12 "platform_client_auth.h", | 14 "platform_client_auth.h", |
13 "pref_names.cc", | 15 "pref_names.cc", |
14 "pref_names.h", | 16 "pref_names.h", |
15 ] | 17 ] |
16 | 18 |
17 # TODO(kmackay) Add "platform_client_auth._simple.cc" to sources | 19 if (chromecast_branding == "public") { |
18 # if chromecast_branding != "Chrome" | 20 sources += [ "platform_client_auth_simple.cc" ] |
| 21 } |
19 | 22 |
20 deps = [ | 23 deps = [ |
21 "//base", | 24 "//base", |
22 "//chromecast/base:cast_version", | 25 "//chromecast/base:cast_version", |
23 "//content/public/common", | 26 "//content/public/common", |
24 "//ui/base", | 27 "//ui/base", |
25 "//ui/gfx", | 28 "//ui/gfx", |
26 ] | 29 ] |
27 } | 30 } |
OLD | NEW |