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

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: Remove hack regarding Pepper plugins. 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 (!is_chromecast_chrome_branded) {
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 }
31
32 source_set("media") {
mbjorge 2015/08/04 18:10:54 Why not put this in chromecast/common/media/BUILD.
slan 2015/08/04 21:22:05 See my response to the other comment. It does not
33 sources = [
34 "media/cast_message_generator.cc",
35 "media/cast_message_generator.h",
36 "media/cast_messages.h",
37 "media/cma_ipc_common.h",
38 "media/cma_message_generator.cc",
39 "media/cma_message_generator.h",
40 "media/cma_messages.h",
41 "media/cma_messages.h",
42 "media/cma_param_traits.cc",
43 "media/cma_param_traits.h",
44 "media/cma_param_traits_macros.h",
45 "media/shared_memory_chunk.cc",
46 "media/shared_memory_chunk.h",
47 ]
48
49 deps = [
50 "//base",
51 "//chromecast/media",
52 "//content/public/common",
53 "//ipc",
54 "//media",
55 "//media:shared_memory_support",
56 "//ui/gfx/ipc",
57 ]
58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698