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', | |
not at google - send to devlin
2014/07/08 15:18:14
this part looks fine
| |
19 'manifest_types.json', | 18 'manifest_types.json', |
20 ], | 19 ], |
21 | 20 |
22 # These are used everywhere except Android. | 21 # These are used everywhere except Android. |
23 'main_schema_files': [ | 22 'main_schema_files': [ |
24 'accessibility_private.json', | 23 'accessibility_private.json', |
25 'activity_log_private.json', | 24 'activity_log_private.json', |
26 'alarms.idl', | 25 'alarms.idl', |
27 'app_current_window_internal.idl', | 26 'app_current_window_internal.idl', |
28 'app_window.idl', | 27 'app_window.idl', |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
222 'conditions': [ | 221 'conditions': [ |
223 ['chromeos==1', { | 222 ['chromeos==1', { |
224 'dependencies': [ | 223 'dependencies': [ |
225 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 224 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
226 ], | 225 ], |
227 }], | 226 }], |
228 ], | 227 ], |
229 }, | 228 }, |
230 ], | 229 ], |
231 } | 230 } |
OLD | NEW |