OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'chrome_api', | 8 'target_name': 'chrome_api', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 'webcam_private.idl', | 167 'webcam_private.idl', |
168 ], | 168 ], |
169 }], | 169 }], |
170 ['enable_webrtc==1', { | 170 ['enable_webrtc==1', { |
171 'schema_files': [ | 171 'schema_files': [ |
172 'cast_streaming_rtp_stream.idl', | 172 'cast_streaming_rtp_stream.idl', |
173 'cast_streaming_session.idl', | 173 'cast_streaming_session.idl', |
174 'cast_streaming_udp_transport.idl', | 174 'cast_streaming_udp_transport.idl', |
175 ], | 175 ], |
176 }], | 176 }], |
| 177 ['branding=="Chrome" and chromeos==1', { |
| 178 'schema_files': [ |
| 179 'ledger/ledger.idl', |
| 180 ], |
| 181 }], |
177 ], | 182 ], |
178 'cc_dir': 'chrome/common/extensions/api', | 183 'cc_dir': 'chrome/common/extensions/api', |
179 'root_namespace': 'extensions::api', | 184 'root_namespace': 'extensions::api', |
180 }, | 185 }, |
181 'dependencies': [ | 186 'dependencies': [ |
182 '<(DEPTH)/content/content.gyp:content_browser', | 187 '<(DEPTH)/content/content.gyp:content_browser', |
183 '<(DEPTH)/skia/skia.gyp:skia', | 188 '<(DEPTH)/skia/skia.gyp:skia', |
184 '<(DEPTH)/sync/sync.gyp:sync', | 189 '<(DEPTH)/sync/sync.gyp:sync', |
185 ], | 190 ], |
186 'conditions': [ | 191 'conditions': [ |
187 ['chromeos==1', { | 192 ['chromeos==1', { |
188 'dependencies': [ | 193 'dependencies': [ |
189 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 194 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
190 ], | 195 ], |
191 }], | 196 }], |
192 ], | 197 ], |
193 }, | 198 }, |
194 ], | 199 ], |
195 } | 200 } |
OLD | NEW |