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

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

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Inlined simple getters and removed redundant namespace decl 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 15 matching lines...) Expand all
26 'guest_view_internal.json', 26 'guest_view_internal.json',
27 'hid.idl', 27 'hid.idl',
28 'power.idl', 28 'power.idl',
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 'system_cpu.idl',
37 'system_display.idl',
38 'system_memory.idl',
39 'system_network.idl',
40 'system_storage.idl',
36 'test.json', 41 'test.json',
37 'usb.idl', 42 'usb.idl',
38 'usb_private.idl', 43 'usb_private.idl',
39 ], 44 ],
40 'non_compiled_schema_files': [ 45 'non_compiled_schema_files': [
41 ], 46 ],
42 'conditions': [ 47 'conditions': [
43 ['enable_extensions==1', { 48 ['enable_extensions==1', {
44 'schema_files': [ 49 'schema_files': [
45 '<@(main_schema_files)', 50 '<@(main_schema_files)',
46 ], 51 ],
47 }, { 52 }, {
48 'schema_files': [ 53 'schema_files': [
49 '<@(android_schema_files)', 54 '<@(android_schema_files)',
50 ], 55 ],
51 }], 56 }],
52 ], 57 ],
53 'cc_dir': 'extensions/common/api', 58 'cc_dir': 'extensions/common/api',
54 'root_namespace': 'extensions::core_api::%(namespace)s', 59 'root_namespace': 'extensions::core_api::%(namespace)s',
55 'impl_dir_': 'extensions/browser/api', 60 'impl_dir_': 'extensions/browser/api',
56 }, 61 },
57 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698