OLD | NEW |
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': 'chrome_api', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
11 '<@(schema_files)', | 11 '<@(schema_files)', |
12 ], | 12 ], |
13 # TODO(jschuh): http://crbug.com/167187 size_t -> int | 13 # TODO(jschuh): http://crbug.com/167187 size_t -> int |
14 'msvs_disabled_warnings': [ 4267 ], | 14 'msvs_disabled_warnings': [ 4267 ], |
15 'includes': [ | 15 'includes': [ |
16 '../../../../build/json_schema_bundle_compile.gypi', | 16 '../../../../build/json_schema_bundle_compile.gypi', |
17 '../../../../build/json_schema_compile.gypi', | 17 '../../../../build/json_schema_compile.gypi', |
18 ], | 18 ], |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 'page_capture.json', | 92 'page_capture.json', |
93 'permissions.json', | 93 'permissions.json', |
94 'preferences_private.json', | 94 'preferences_private.json', |
95 'power.idl', | 95 'power.idl', |
96 'push_messaging.idl', | 96 'push_messaging.idl', |
97 'reading_list_private.json', | 97 'reading_list_private.json', |
98 'runtime.json', | 98 'runtime.json', |
99 'serial.idl', | 99 'serial.idl', |
100 'sessions.json', | 100 'sessions.json', |
101 'signed_in_devices.idl', | 101 'signed_in_devices.idl', |
102 'socket.idl', | |
103 'sockets_tcp.idl', | |
104 'sockets_tcp_server.idl', | |
105 'sockets_udp.idl', | |
106 'storage.json', | 102 'storage.json', |
107 'streams_private.idl', | 103 'streams_private.idl', |
108 'sync_file_system.idl', | 104 'sync_file_system.idl', |
109 'system_cpu.idl', | 105 'system_cpu.idl', |
110 'system_display.idl', | 106 'system_display.idl', |
111 'system_indicator.idl', | 107 'system_indicator.idl', |
112 'system_memory.idl', | 108 'system_memory.idl', |
113 'system_network.idl', | 109 'system_network.idl', |
114 'system_private.json', | 110 'system_private.json', |
115 'system_storage.idl', | 111 'system_storage.idl', |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 'conditions': [ | 182 'conditions': [ |
187 ['chromeos==1', { | 183 ['chromeos==1', { |
188 'dependencies': [ | 184 'dependencies': [ |
189 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 185 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
190 ], | 186 ], |
191 }], | 187 }], |
192 ], | 188 ], |
193 }, | 189 }, |
194 ], | 190 ], |
195 } | 191 } |
OLD | NEW |