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

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

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better comments Created 6 years, 5 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'extensions_api', 8 'target_name': 'extensions_api',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 17 matching lines...) Expand all
28 'dns.idl', 28 'dns.idl',
29 'extensions_manifest_types.json', 29 'extensions_manifest_types.json',
30 'power.idl', 30 'power.idl',
31 'runtime.json', 31 'runtime.json',
32 'serial.idl', 32 'serial.idl',
33 'socket.idl', 33 'socket.idl',
34 'sockets_tcp.idl', 34 'sockets_tcp.idl',
35 'sockets_tcp_server.idl', 35 'sockets_tcp_server.idl',
36 'sockets_udp.idl', 36 'sockets_udp.idl',
37 'storage.json', 37 'storage.json',
38 'system_cpu.idl',
39 'system_display.idl',
40 'system_memory.idl',
41 'system_network.idl',
42 'system_storage.idl',
38 'test.json', 43 'test.json',
39 'usb.idl', 44 'usb.idl',
40 ], 45 ],
41 }, { 46 }, {
42 # TODO: Eliminate these on Android. See crbug.com/305852. 47 # TODO: Eliminate these on Android. See crbug.com/305852.
43 'schema_files': [ 48 'schema_files': [
44 'extensions_manifest_types.json', 49 'extensions_manifest_types.json',
45 'runtime.json', 50 'runtime.json',
46 ], 51 ],
47 }], 52 }],
48 ], 53 ],
49 'cc_dir': 'extensions/common/api', 54 'cc_dir': 'extensions/common/api',
50 'root_namespace': 'extensions::core_api', 55 'root_namespace': 'extensions::core_api',
51 'impl_dir': 'extensions/browser/api', 56 'impl_dir': 'extensions/browser/api',
52 }, 57 },
53 'dependencies': [ 58 'dependencies': [
54 '<(DEPTH)/device/serial/serial.gyp:device_serial', 59 '<(DEPTH)/device/serial/serial.gyp:device_serial',
55 '<(DEPTH)/skia/skia.gyp:skia', 60 '<(DEPTH)/skia/skia.gyp:skia',
56 ], 61 ],
57 }, 62 },
58 ], 63 ],
59 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698