| 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 # In addition, the GN build treats .idl files and .json files separately, | 12 # In addition, the GN build treats .idl files and .json files separately, |
| 13 # since they run through different scripts. If you add a new category, also | 13 # since they run through different scripts. If you add a new category, also |
| 14 # add it to the BUILD.gn file in this directory. | 14 # add it to the BUILD.gn file in this directory. |
| 15 'variables': { | 15 'variables': { |
| 16 # These duplicate other lists and are the only ones used on Android. They | 16 # These duplicate other lists and are the only ones used on Android. They |
| 17 # should be eliminated. See crbug.com/305852. | 17 # should be eliminated. See crbug.com/305852. |
| 18 'android_schema_files_idl': [ | 18 'android_schema_files_idl': [ |
| 19 'file_system.idl', | 19 'file_system.idl', |
| 20 'sync_file_system.idl', | 20 'sync_file_system.idl', |
| 21 'tab_capture.idl', | 21 'tab_capture.idl', |
| 22 ], | 22 ], |
| 23 'android_schema_files_json': [ | 23 'android_schema_files_json': [ |
| 24 'activity_log_private.json', | 24 'activity_log_private.json', |
| 25 'events.json', | |
| 26 'manifest_types.json', | 25 'manifest_types.json', |
| 27 'permissions.json', | 26 'permissions.json', |
| 28 'tabs.json', | 27 'tabs.json', |
| 29 'types.json', | 28 'types.json', |
| 30 'web_navigation.json', | 29 'web_navigation.json', |
| 31 'windows.json', | 30 'windows.json', |
| 32 ], | 31 ], |
| 33 | 32 |
| 34 # These are used everywhere except Android. | 33 # These are used everywhere except Android. |
| 35 'main_schema_files_idl': [ | 34 'main_schema_files_idl': [ |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 'conditions': [ | 237 'conditions': [ |
| 239 ['chromeos==1', { | 238 ['chromeos==1', { |
| 240 'dependencies': [ | 239 'dependencies': [ |
| 241 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 240 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
| 242 ], | 241 ], |
| 243 }], | 242 }], |
| 244 ], | 243 ], |
| 245 }, | 244 }, |
| 246 ], | 245 ], |
| 247 } | 246 } |
| OLD | NEW |