Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Side by Side Diff: chrome/common/extensions/api/api.gyp

Issue 354483004: Implement <appview> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@app_view_skeleton
Patch Set: Addressed Istiaque's comments Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 ], 20 ],
21 21
22 # These are used everywhere except Android. 22 # These are used everywhere except Android.
23 'main_schema_files': [ 23 'main_schema_files': [
24 'accessibility_private.json', 24 'accessibility_private.json',
25 'activity_log_private.json', 25 'activity_log_private.json',
26 'alarms.idl', 26 'alarms.idl',
27 'app_current_window_internal.idl', 27 'app_current_window_internal.idl',
28 'app_view_internal.json',
28 'app_window.idl', 29 'app_window.idl',
29 'audio.idl', 30 'audio.idl',
30 'automation.idl', 31 'automation.idl',
31 'automation_internal.idl', 32 'automation_internal.idl',
32 'autotest_private.idl', 33 'autotest_private.idl',
33 'bluetooth.idl', 34 'bluetooth.idl',
34 'bluetooth_low_energy.idl', 35 'bluetooth_low_energy.idl',
35 'bluetooth_private.json', 36 'bluetooth_private.json',
36 'bluetooth_socket.idl', 37 'bluetooth_socket.idl',
37 'bookmark_manager_private.json', 38 'bookmark_manager_private.json',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 'conditions': [ 223 'conditions': [
223 ['chromeos==1', { 224 ['chromeos==1', {
224 'dependencies': [ 225 'dependencies': [
225 '<(DEPTH)/chrome/chrome.gyp:drive_proto', 226 '<(DEPTH)/chrome/chrome.gyp:drive_proto',
226 ], 227 ],
227 }], 228 }],
228 ], 229 ],
229 }, 230 },
230 ], 231 ],
231 } 232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698