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

Side by Side Diff: chromecast/media/cma/backend/BUILD.gn

Issue 1345013002: Add is_chromecast to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Rebase + ui changes. Created 5 years, 3 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
« no previous file with comments | « chromecast/media/base/BUILD.gn ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 source_set("backend") { 5 source_set("backend") {
6 sources = [ 6 sources = [
7 "audio_pipeline_device_default.cc", 7 "audio_pipeline_device_default.cc",
8 "audio_pipeline_device_default.h", 8 "audio_pipeline_device_default.h",
9 "media_clock_device_default.cc", 9 "media_clock_device_default.cc",
10 "media_clock_device_default.h", 10 "media_clock_device_default.h",
11 "media_component_device_default.cc", 11 "media_component_device_default.cc",
12 "media_component_device_default.h", 12 "media_component_device_default.h",
13 "media_pipeline_backend_default.cc", 13 "media_pipeline_backend_default.cc",
14 "media_pipeline_backend_default.h", 14 "media_pipeline_backend_default.h",
15 "video_pipeline_device_default.cc", 15 "video_pipeline_device_default.cc",
16 "video_pipeline_device_default.h", 16 "video_pipeline_device_default.h",
17 ] 17 ]
18 18
19 # This target cannot depend on //media. Include these headers directly.
20 sources += [
21 "//media/base/media_export.h",
22 "//media/base/timestamp_constants.h",
23 ]
24
19 public_deps = [ 25 public_deps = [
20 "//chromecast/public", 26 "//chromecast/public",
21 "//chromecast/public/media", 27 "//chromecast/public/media",
22 ] 28 ]
23 29
24 deps = [ 30 deps = [
25 "//base", 31 "//base",
26 "//chromecast/media/cma/base",
27 "//media",
28 ] 32 ]
29 33
30 configs += [ "//chromecast:config" ] 34 configs += [ "//chromecast:config" ]
31 } 35 }
OLDNEW
« no previous file with comments | « chromecast/media/base/BUILD.gn ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698