| 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', | |
| 21 ], | 20 ], |
| 22 | 21 |
| 23 # These are used everywhere except Android. | 22 # These are used everywhere except Android. |
| 24 'main_schema_files': [ | 23 'main_schema_files': [ |
| 25 'accessibility_private.json', | 24 'accessibility_private.json', |
| 26 'activity_log_private.json', | 25 'activity_log_private.json', |
| 27 'alarms.idl', | 26 'alarms.idl', |
| 28 'app_current_window_internal.idl', | 27 'app_current_window_internal.idl', |
| 29 'app_window.idl', | 28 'app_window.idl', |
| 30 'audio.idl', | 29 'audio.idl', |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 'conditions': [ | 223 'conditions': [ |
| 225 ['chromeos==1', { | 224 ['chromeos==1', { |
| 226 'dependencies': [ | 225 'dependencies': [ |
| 227 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 226 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
| 228 ], | 227 ], |
| 229 }], | 228 }], |
| 230 ], | 229 ], |
| 231 }, | 230 }, |
| 232 ], | 231 ], |
| 233 } | 232 } |
| OLD | NEW |