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

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

Issue 11968054: <webview>: Implement ExecuteScript (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits Created 7 years, 11 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'push_messaging.idl', 60 'push_messaging.idl',
61 'rtc_private.idl', 61 'rtc_private.idl',
62 'serial.idl', 62 'serial.idl',
63 'socket.idl', 63 'socket.idl',
64 'storage.json', 64 'storage.json',
65 'sync_file_system.idl', 65 'sync_file_system.idl',
66 'system_indicator.idl', 66 'system_indicator.idl',
67 'tab_capture.idl', 67 'tab_capture.idl',
68 'tabs.json', 68 'tabs.json',
69 'usb.idl', 69 'usb.idl',
70 'webview.json',
70 'web_navigation.json', 71 'web_navigation.json',
71 'web_request.json', 72 'web_request.json',
72 'windows.json', 73 'windows.json',
73 ], 74 ],
74 'cc_dir': 'chrome/common/extensions/api', 75 'cc_dir': 'chrome/common/extensions/api',
75 'root_namespace': 'extensions::api', 76 'root_namespace': 'extensions::api',
76 }, 77 },
77 'conditions': [ 78 'conditions': [
78 ['OS=="android"', { 79 ['OS=="android"', {
79 'schema_files!': [ 80 'schema_files!': [
80 'usb.idl', 81 'usb.idl',
81 ], 82 ],
82 }], 83 }],
83 ['OS!="chromeos"', { 84 ['OS!="chromeos"', {
84 'schema_files!': [ 85 'schema_files!': [
85 'file_browser_handler_internal.json', 86 'file_browser_handler_internal.json',
86 'rtc_private.idl', 87 'rtc_private.idl',
87 ], 88 ],
88 }], 89 }],
89 ], 90 ],
90 }, 91 },
91 ], 92 ],
92 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698