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 # All files are stored in these lists which are referenced in the target | 6 # All files are stored in these lists which are referenced in the target |
7 # below so that the GN build of this target can read in this dictionary and | 7 # below so that the GN build of this target can read in this dictionary and |
8 # duplicate the same logic without the lists getting out-of-sync. The GN | 8 # duplicate the same logic without the lists getting out-of-sync. The GN |
9 # .gypi reader can not process conditions and does not know about targets, | 9 # .gypi reader can not process conditions and does not know about targets, |
10 # etc., it just reads Python dictionaries. | 10 # etc., it just reads Python dictionaries. |
11 # | 11 # |
12 # If you add a new category, also add it to the BUILD.gn file in this | 12 # If you add a new category, also add it to the BUILD.gn file in this |
13 # directory. | 13 # directory. |
14 'variables': { | 14 'variables': { |
15 # These duplicate other lists and are the only ones used on Android. They | 15 # These duplicate other lists and are the only ones used on Android. They |
16 # should be eliminated. See crbug.com/305852. | 16 # should be eliminated. See crbug.com/305852. |
17 'android_schema_files': [ | 17 'android_schema_files': [ |
18 'file_system.idl', | 18 'file_system.idl', |
19 'manifest_types.json', | 19 'manifest_types.json', |
20 'sync_file_system.idl', | 20 'sync_file_system.idl', |
21 ], | 21 ], |
22 | 22 |
23 # These are used everywhere except Android. | 23 # These are used everywhere except Android. |
24 'main_schema_files': [ | 24 'main_schema_files': [ |
25 'accessibility_private.json', | 25 'accessibility_private.json', |
26 'activity_log_private.json', | 26 'activity_log_private.json', |
27 'alarms.idl', | 27 'alarms.idl', |
28 'app_current_window_internal.idl', | 28 'app_current_window_internal.idl', |
| 29 'app_view_internal.json', |
29 'app_window.idl', | 30 'app_window.idl', |
30 'audio.idl', | 31 'audio.idl', |
31 'automation.idl', | 32 'automation.idl', |
32 'automation_internal.idl', | 33 'automation_internal.idl', |
33 'autotest_private.idl', | 34 'autotest_private.idl', |
34 'bluetooth.idl', | 35 'bluetooth.idl', |
35 'bluetooth_low_energy.idl', | 36 'bluetooth_low_energy.idl', |
36 'bluetooth_private.json', | 37 'bluetooth_private.json', |
37 'bluetooth_socket.idl', | 38 'bluetooth_socket.idl', |
38 'bookmark_manager_private.json', | 39 'bookmark_manager_private.json', |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 'conditions': [ | 225 'conditions': [ |
225 ['chromeos==1', { | 226 ['chromeos==1', { |
226 'dependencies': [ | 227 'dependencies': [ |
227 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 228 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
228 ], | 229 ], |
229 }], | 230 }], |
230 ], | 231 ], |
231 }, | 232 }, |
232 ], | 233 ], |
233 } | 234 } |
OLD | NEW |