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

Side by Side Diff: chromecast/chromecast.gyp

Issue 397143003: Build-level separation of default CastService implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chromecast-resource-fix
Patch Set: copyright capitalization Created 6 years, 5 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 2014 The Chromium Authors. All Rights Reserved. 1 # Copyright 2014 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'chromecast_branding%': 'Chromium', 8 'chromecast_branding%': 'Chromium',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 29 matching lines...) Expand all
40 'sources': [ 40 'sources': [
41 'service/cast_service.cc', 41 'service/cast_service.cc',
42 'service/cast_service.h', 42 'service/cast_service.h',
43 ], 43 ],
44 'conditions': [ 44 'conditions': [
45 ['chromecast_branding=="Chrome"', { 45 ['chromecast_branding=="Chrome"', {
46 'dependencies': [ 46 'dependencies': [
47 'internal/chromecast_internal.gyp:cast_service_internal', 47 'internal/chromecast_internal.gyp:cast_service_internal',
48 ], 48 ],
49 }, { 49 }, {
50 'dependencies': [
51 '../base/base.gyp:base',
52 '../content/content.gyp:content',
53 ],
50 'sources': [ 54 'sources': [
51 'service/cast_platform_init_stub.cc', 55 'service/cast_service_simple.cc',
56 'service/cast_service_simple.h',
52 ], 57 ],
53 }], 58 }],
54 ], 59 ],
55 }, 60 },
56 { 61 {
57 'target_name': 'cast_shell_resources', 62 'target_name': 'cast_shell_resources',
58 'type': 'none', 63 'type': 'none',
59 # Place holder for cast_shell specific resources. 64 # Place holder for cast_shell specific resources.
60 }, 65 },
61 { 66 {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 ], 152 ],
148 }, { 153 }, {
149 'dependencies': [ 154 'dependencies': [
150 '../ui/ozone/ozone.gyp:eglplatform_shim_x11', 155 '../ui/ozone/ozone.gyp:eglplatform_shim_x11',
151 ], 156 ],
152 }], 157 }],
153 ], 158 ],
154 }, 159 },
155 ], # end of targets 160 ], # end of targets
156 } 161 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/service/cast_platform_init_stub.cc » ('j') | chromecast/service/cast_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698