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

Side by Side Diff: extensions/common/api/schemas.gypi

Issue 541753004: Split web_view_internal_api and move part of it to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'sources': [ 6 'sources': [
7 '<@(schema_files)', 7 '<@(schema_files)',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 18 matching lines...) Expand all
29 'runtime.json', 29 'runtime.json',
30 'serial.idl', 30 'serial.idl',
31 'socket.idl', 31 'socket.idl',
32 'sockets_tcp.idl', 32 'sockets_tcp.idl',
33 'sockets_tcp_server.idl', 33 'sockets_tcp_server.idl',
34 'sockets_udp.idl', 34 'sockets_udp.idl',
35 'storage.json', 35 'storage.json',
36 'test.json', 36 'test.json',
37 'usb.idl', 37 'usb.idl',
38 'usb_private.idl', 38 'usb_private.idl',
39 'web_view_internal.json',
39 ], 40 ],
40 'non_compiled_schema_files': [ 41 'non_compiled_schema_files': [
41 ], 42 ],
42 'conditions': [ 43 'conditions': [
43 ['enable_extensions==1', { 44 ['enable_extensions==1', {
44 'schema_files': [ 45 'schema_files': [
45 '<@(main_schema_files)', 46 '<@(main_schema_files)',
46 ], 47 ],
47 }, { 48 }, {
48 'schema_files': [ 49 'schema_files': [
49 '<@(android_schema_files)', 50 '<@(android_schema_files)',
50 ], 51 ],
51 }], 52 }],
52 ], 53 ],
53 'cc_dir': 'extensions/common/api', 54 'cc_dir': 'extensions/common/api',
54 'root_namespace': 'extensions::core_api::%(namespace)s', 55 'root_namespace': 'extensions::core_api::%(namespace)s',
55 'impl_dir_': 'extensions/browser/api', 56 'impl_dir_': 'extensions/browser/api',
56 }, 57 },
57 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698