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

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

Issue 10919086: Wired chrome.rtcPrivate API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'experimental_dns.idl', 49 'experimental_dns.idl',
50 'experimental_identity.idl', 50 'experimental_identity.idl',
51 'experimental_idltest.idl', 51 'experimental_idltest.idl',
52 'experimental_media_galleries.idl', 52 'experimental_media_galleries.idl',
53 'experimental_push_messaging.idl', 53 'experimental_push_messaging.idl',
54 'experimental_system_info_cpu.idl', 54 'experimental_system_info_cpu.idl',
55 'experimental_system_info_storage.idl', 55 'experimental_system_info_storage.idl',
56 'experimental_usb.idl', 56 'experimental_usb.idl',
57 'file_system.idl', 57 'file_system.idl',
58 'media_galleries.idl', 58 'media_galleries.idl',
59 'rtc_private.idl',
59 'serial.idl', 60 'serial.idl',
60 'socket.idl', 61 'socket.idl',
61 ], 62 ],
62 'cc_dir': 'chrome/common/extensions/api', 63 'cc_dir': 'chrome/common/extensions/api',
63 'root_namespace': 'extensions::api', 64 'root_namespace': 'extensions::api',
64 }, 65 },
65 'conditions': [ 66 'conditions': [
66 ['OS=="android"', { 67 ['OS=="android"', {
67 'idl_schema_files!': [ 68 'idl_schema_files!': [
68 'experimental_usb.idl', 69 'experimental_usb.idl',
69 ], 70 ],
70 }], 71 }],
71 ['OS!="chromeos"', { 72 ['OS!="chromeos"', {
72 'json_schema_files!': [ 73 'json_schema_files!': [
73 'file_browser_handler_internal.json', 74 'file_browser_handler_internal.json',
74 ], 75 ],
76 'idl_schema_files!': [
77 'rtc_private.idl',
78 ],
75 }], 79 }],
76 ], 80 ],
77 }, 81 },
78 ], 82 ],
79 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698