Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: chromecast/common/BUILD.gn

Issue 1213333003: Build public cast_shell on x86 with GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: TODOs cleaned up. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698