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

Side by Side Diff: chrome/browser/extensions/BUILD.gn

Issue 2934143002: Move chrome.fileSystem implementation to //extensions (Closed)
Patch Set: rebase Created 3 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//extensions/features/features.gni") 8 import("//extensions/features/features.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 "api/extension_action/extension_action_api.cc", 185 "api/extension_action/extension_action_api.cc",
186 "api/extension_action/extension_action_api.h", 186 "api/extension_action/extension_action_api.h",
187 "api/extension_action/extension_page_actions_api_constants.cc", 187 "api/extension_action/extension_page_actions_api_constants.cc",
188 "api/extension_action/extension_page_actions_api_constants.h", 188 "api/extension_action/extension_page_actions_api_constants.h",
189 "api/feedback_private/feedback_private_api.cc", 189 "api/feedback_private/feedback_private_api.cc",
190 "api/feedback_private/feedback_private_api.h", 190 "api/feedback_private/feedback_private_api.h",
191 "api/feedback_private/feedback_service.cc", 191 "api/feedback_private/feedback_service.cc",
192 "api/feedback_private/feedback_service.h", 192 "api/feedback_private/feedback_service.h",
193 "api/file_handlers/non_native_file_system_delegate_chromeos.cc", 193 "api/file_handlers/non_native_file_system_delegate_chromeos.cc",
194 "api/file_handlers/non_native_file_system_delegate_chromeos.h", 194 "api/file_handlers/non_native_file_system_delegate_chromeos.h",
195 "api/file_system/chrome_file_system_delegate.cc",
196 "api/file_system/chrome_file_system_delegate.h",
195 "api/file_system/file_entry_picker.cc", 197 "api/file_system/file_entry_picker.cc",
196 "api/file_system/file_entry_picker.h", 198 "api/file_system/file_entry_picker.h",
197 "api/file_system/file_system_api.cc",
198 "api/file_system/file_system_api.h",
199 "api/font_settings/font_settings_api.cc", 199 "api/font_settings/font_settings_api.cc",
200 "api/font_settings/font_settings_api.h", 200 "api/font_settings/font_settings_api.h",
201 "api/gcm/gcm_api.cc", 201 "api/gcm/gcm_api.cc",
202 "api/gcm/gcm_api.h", 202 "api/gcm/gcm_api.h",
203 "api/history/history_api.cc", 203 "api/history/history_api.cc",
204 "api/history/history_api.h", 204 "api/history/history_api.h",
205 "api/hotword_private/hotword_private_api.cc", 205 "api/hotword_private/hotword_private_api.cc",
206 "api/hotword_private/hotword_private_api.h", 206 "api/hotword_private/hotword_private_api.h",
207 "api/i18n/i18n_api.cc", 207 "api/i18n/i18n_api.cc",
208 "api/i18n/i18n_api.h", 208 "api/i18n/i18n_api.h",
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 "api/braille_display_private/brlapi_connection.cc", 1171 "api/braille_display_private/brlapi_connection.cc",
1172 "api/braille_display_private/brlapi_connection.h", 1172 "api/braille_display_private/brlapi_connection.h",
1173 "api/braille_display_private/brlapi_keycode_map.cc", 1173 "api/braille_display_private/brlapi_keycode_map.cc",
1174 "api/braille_display_private/brlapi_keycode_map.h", 1174 "api/braille_display_private/brlapi_keycode_map.h",
1175 ] 1175 ]
1176 deps += [ "//build/linux/libbrlapi" ] 1176 deps += [ "//build/linux/libbrlapi" ]
1177 } else { 1177 } else {
1178 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1178 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1179 } 1179 }
1180 } 1180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698