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 'activity_log_private.json', | 18 'activity_log_private.json', |
19 'events.json', | |
20 'file_system.idl', | 19 'file_system.idl', |
21 'manifest_types.json', | 20 'manifest_types.json', |
22 'permissions.json', | 21 'permissions.json', |
23 'sync_file_system.idl', | 22 'sync_file_system.idl', |
24 'tab_capture.idl', | 23 'tab_capture.idl', |
25 'tabs.json', | 24 'tabs.json', |
26 'types.json', | 25 'types.json', |
27 'web_navigation.json', | 26 'web_navigation.json', |
28 'windows.json', | 27 'windows.json', |
29 ], | 28 ], |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 'conditions': [ | 231 'conditions': [ |
233 ['chromeos==1', { | 232 ['chromeos==1', { |
234 'dependencies': [ | 233 'dependencies': [ |
235 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 234 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
236 ], | 235 ], |
237 }], | 236 }], |
238 ], | 237 ], |
239 }, | 238 }, |
240 ], | 239 ], |
241 } | 240 } |
OLD | NEW |