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

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

Issue 286933006: Implement a JavaScript API for document scanning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop vestigial file-related code; kOnstify strings Created 6 years, 7 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome_api', 8 'target_name': 'chrome_api',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'cloud_print_private.json', 57 'cloud_print_private.json',
58 'command_line_private.json', 58 'command_line_private.json',
59 'content_settings.json', 59 'content_settings.json',
60 'context_menus.json', 60 'context_menus.json',
61 'context_menus_internal.json', 61 'context_menus_internal.json',
62 'cookies.json', 62 'cookies.json',
63 'debugger.json', 63 'debugger.json',
64 'desktop_capture.json', 64 'desktop_capture.json',
65 'developer_private.idl', 65 'developer_private.idl',
66 'dial.idl', 66 'dial.idl',
67 'document_scan.idl',
67 'downloads.idl', 68 'downloads.idl',
68 'downloads_internal.idl', 69 'downloads_internal.idl',
69 'echo_private.json', 70 'echo_private.json',
70 'enterprise_platform_keys_private.json', 71 'enterprise_platform_keys_private.json',
71 'events.json', 72 'events.json',
72 'feedback_private.idl', 73 'feedback_private.idl',
73 'file_browser_private.idl', 74 'file_browser_private.idl',
74 'file_browser_private_internal.idl', 75 'file_browser_private_internal.idl',
75 'file_system.idl', 76 'file_system.idl',
76 'file_system_provider.idl', 77 'file_system_provider.idl',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 'conditions': [ 194 'conditions': [
194 ['chromeos==1', { 195 ['chromeos==1', {
195 'dependencies': [ 196 'dependencies': [
196 '<(DEPTH)/chrome/chrome.gyp:drive_proto', 197 '<(DEPTH)/chrome/chrome.gyp:drive_proto',
197 ], 198 ],
198 }], 199 }],
199 ], 200 ],
200 }, 201 },
201 ], 202 ],
202 } 203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698