OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |