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': 'api', | 8 'target_name': 'api', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'system_private.json', | 101 'system_private.json', |
102 'tab_capture.idl', | 102 'tab_capture.idl', |
103 'tabs.json', | 103 'tabs.json', |
104 'terminal_private.json', | 104 'terminal_private.json', |
105 'test.json', | 105 'test.json', |
106 'top_sites.json', | 106 'top_sites.json', |
107 'usb.idl', | 107 'usb.idl', |
108 'wallpaper_private.json', | 108 'wallpaper_private.json', |
109 'web_navigation.json', | 109 'web_navigation.json', |
110 'web_request.json', | 110 'web_request.json', |
| 111 'webrtc_logging_private.idl', |
111 'webstore_private.json', | 112 'webstore_private.json', |
112 'webview.json', | 113 'webview.json', |
113 'windows.json', | 114 'windows.json', |
114 ], | 115 ], |
115 'cc_dir': 'chrome/common/extensions/api', | 116 'cc_dir': 'chrome/common/extensions/api', |
116 'root_namespace': 'extensions::api', | 117 'root_namespace': 'extensions::api', |
117 }, | 118 }, |
118 'dependencies': [ | 119 'dependencies': [ |
119 '<(DEPTH)/skia/skia.gyp:skia', | 120 '<(DEPTH)/skia/skia.gyp:skia', |
120 '<(DEPTH)/sync/sync.gyp:sync', | 121 '<(DEPTH)/sync/sync.gyp:sync', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'webview.json', | 161 'webview.json', |
161 ], | 162 ], |
162 }], | 163 }], |
163 ['OS!="chromeos"', { | 164 ['OS!="chromeos"', { |
164 'schema_files!': [ | 165 'schema_files!': [ |
165 'file_browser_handler_internal.json', | 166 'file_browser_handler_internal.json', |
166 'log_private.idl', | 167 'log_private.idl', |
167 'rtc_private.idl', | 168 'rtc_private.idl', |
168 ], | 169 ], |
169 }], | 170 }], |
| 171 ['enable_webrtc==0', { |
| 172 'schema_files!': [ |
| 173 'webrtc_logging_private.idl', |
| 174 ], |
| 175 }], |
170 ], | 176 ], |
171 }, | 177 }, |
172 ], | 178 ], |
173 } | 179 } |
OLD | NEW |