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

Side by Side Diff: chrome/common/extensions/api/api.gyp

Issue 23885002: Add WebRTC logging extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review. Created 7 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 | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698