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

Side by Side Diff: components/drive.gypi

Issue 1314803004: Move chrome/browser/chromeos/drive/file_system.cc (+deps) into components/drive. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 5 years, 3 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/drive/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/drive:drive 8 # GN version: //components/drive:drive
9 'target_name': 'drive', 9 'target_name': 'drive',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 14 matching lines...) Expand all
25 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 25 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
26 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 26 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
27 '../third_party/re2/re2.gyp:re2', 27 '../third_party/re2/re2.gyp:re2',
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 'drive/change_list_loader.cc', 30 'drive/change_list_loader.cc',
31 'drive/change_list_loader.h', 31 'drive/change_list_loader.h',
32 'drive/change_list_loader_observer.h', 32 'drive/change_list_loader_observer.h',
33 'drive/change_list_processor.cc', 33 'drive/change_list_processor.cc',
34 'drive/change_list_processor.h', 34 'drive/change_list_processor.h',
35 'drive/directory_loader.cc',
36 'drive/directory_loader.h',
35 'drive/drive_api_util.cc', 37 'drive/drive_api_util.cc',
36 'drive/drive_api_util.h', 38 'drive/drive_api_util.h',
37 'drive/drive_app_registry.cc', 39 'drive/drive_app_registry.cc',
38 'drive/drive_app_registry.h', 40 'drive/drive_app_registry.h',
39 'drive/drive_app_registry_observer.h', 41 'drive/drive_app_registry_observer.h',
40 'drive/drive_notification_manager.cc', 42 'drive/drive_notification_manager.cc',
41 'drive/drive_notification_manager.h', 43 'drive/drive_notification_manager.h',
42 'drive/drive_notification_observer.h', 44 'drive/drive_notification_observer.h',
43 'drive/drive_pref_names.cc', 45 'drive/drive_pref_names.cc',
44 'drive/drive_pref_names.h', 46 'drive/drive_pref_names.h',
45 'drive/drive_uploader.cc', 47 'drive/drive_uploader.cc',
46 'drive/drive_uploader.h', 48 'drive/drive_uploader.h',
47 'drive/event_logger.cc', 49 'drive/event_logger.cc',
48 'drive/event_logger.h', 50 'drive/event_logger.h',
49 'drive/file_cache.cc', 51 'drive/file_cache.cc',
50 'drive/file_cache.h', 52 'drive/file_cache.h',
51 'drive/file_change.cc', 53 'drive/file_change.cc',
52 'drive/file_change.h', 54 'drive/file_change.h',
53 'drive/file_errors.cc', 55 'drive/file_errors.cc',
54 'drive/file_errors.h', 56 'drive/file_errors.h',
57 'drive/file_system.cc',
58 'drive/file_system.h',
55 'drive/file_system/copy_operation.cc', 59 'drive/file_system/copy_operation.cc',
56 'drive/file_system/copy_operation.h', 60 'drive/file_system/copy_operation.h',
57 'drive/file_system/create_directory_operation.cc', 61 'drive/file_system/create_directory_operation.cc',
58 'drive/file_system/create_directory_operation.h', 62 'drive/file_system/create_directory_operation.h',
59 'drive/file_system/create_file_operation.cc', 63 'drive/file_system/create_file_operation.cc',
60 'drive/file_system/create_file_operation.h', 64 'drive/file_system/create_file_operation.h',
61 'drive/file_system/download_operation.cc', 65 'drive/file_system/download_operation.cc',
62 'drive/file_system/download_operation.h', 66 'drive/file_system/download_operation.h',
63 'drive/file_system/get_file_for_saving_operation.cc', 67 'drive/file_system/get_file_for_saving_operation.cc',
64 'drive/file_system/get_file_for_saving_operation.h', 68 'drive/file_system/get_file_for_saving_operation.h',
(...skipping 12 matching lines...) Expand all
77 'drive/file_system/touch_operation.cc', 81 'drive/file_system/touch_operation.cc',
78 'drive/file_system/touch_operation.h', 82 'drive/file_system/touch_operation.h',
79 'drive/file_system/truncate_operation.cc', 83 'drive/file_system/truncate_operation.cc',
80 'drive/file_system/truncate_operation.h', 84 'drive/file_system/truncate_operation.h',
81 'drive/file_system_core_util.cc', 85 'drive/file_system_core_util.cc',
82 'drive/file_system_core_util.h', 86 'drive/file_system_core_util.h',
83 'drive/file_system_interface.cc', 87 'drive/file_system_interface.cc',
84 'drive/file_system_interface.h', 88 'drive/file_system_interface.h',
85 'drive/file_system_metadata.cc', 89 'drive/file_system_metadata.cc',
86 'drive/file_system_metadata.h', 90 'drive/file_system_metadata.h',
91 'drive/file_system_observer.h',
87 'drive/file_write_watcher.cc', 92 'drive/file_write_watcher.cc',
88 'drive/file_write_watcher.h', 93 'drive/file_write_watcher.h',
89 'drive/job_list.cc', 94 'drive/job_list.cc',
90 'drive/job_list.h', 95 'drive/job_list.h',
91 'drive/job_queue.cc', 96 'drive/job_queue.cc',
92 'drive/job_queue.h', 97 'drive/job_queue.h',
93 'drive/job_scheduler.cc', 98 'drive/job_scheduler.cc',
94 'drive/job_scheduler.h', 99 'drive/job_scheduler.h',
95 'drive/local_file_reader.cc', 100 'drive/local_file_reader.cc',
96 'drive/local_file_reader.h', 101 'drive/local_file_reader.h',
102 'drive/remove_stale_cache_files.cc',
103 'drive/remove_stale_cache_files.h',
97 'drive/resource_entry_conversion.cc', 104 'drive/resource_entry_conversion.cc',
98 'drive/resource_entry_conversion.h', 105 'drive/resource_entry_conversion.h',
99 'drive/resource_metadata.cc', 106 'drive/resource_metadata.cc',
100 'drive/resource_metadata.h', 107 'drive/resource_metadata.h',
101 'drive/resource_metadata_storage.cc', 108 'drive/resource_metadata_storage.cc',
102 'drive/resource_metadata_storage.h', 109 'drive/resource_metadata_storage.h',
110 'drive/search_metadata.cc',
111 'drive/search_metadata.h',
103 'drive/service/drive_api_service.cc', 112 'drive/service/drive_api_service.cc',
104 'drive/service/drive_api_service.h', 113 'drive/service/drive_api_service.h',
105 'drive/service/drive_service_interface.cc', 114 'drive/service/drive_service_interface.cc',
106 'drive/service/drive_service_interface.h', 115 'drive/service/drive_service_interface.h',
116 'drive/sync/entry_revert_performer.cc',
117 'drive/sync/entry_revert_performer.h',
118 'drive/sync/entry_update_performer.cc',
119 'drive/sync/entry_update_performer.h',
120 'drive/sync/remove_performer.cc',
121 'drive/sync/remove_performer.h',
122 'drive/sync_client.cc',
123 'drive/sync_client.h',
107 ], 124 ],
108 }, 125 },
109 126
110 { 127 {
111 # GN version: //components/drive:proto 128 # GN version: //components/drive:proto
112 # Protobuf compiler / generator for the Drive protocol buffer. 129 # Protobuf compiler / generator for the Drive protocol buffer.
113 'target_name': 'drive_proto', 130 'target_name': 'drive_proto',
114 'type': 'static_library', 131 'type': 'static_library',
115 'sources': [ 'drive/drive.proto' ], 132 'sources': [ 'drive/drive.proto' ],
116 'variables': { 133 'variables': {
(...skipping 14 matching lines...) Expand all
131 'drive', 148 'drive',
132 'drive_proto', 149 'drive_proto',
133 '../base/base.gyp:base', 150 '../base/base.gyp:base',
134 '../content/content_shell_and_tests.gyp:test_support_content', 151 '../content/content_shell_and_tests.gyp:test_support_content',
135 '../google_apis/google_apis.gyp:google_apis', 152 '../google_apis/google_apis.gyp:google_apis',
136 '../net/net.gyp:net', 153 '../net/net.gyp:net',
137 ], 154 ],
138 'sources': [ 155 'sources': [
139 "drive/drive_test_util.cc", 156 "drive/drive_test_util.cc",
140 "drive/drive_test_util.h", 157 "drive/drive_test_util.h",
158 "drive/dummy_file_system.cc",
159 "drive/dummy_file_system.h",
160 "drive/fake_file_system.cc",
161 "drive/fake_file_system.h",
141 "drive/fake_free_disk_space_getter.cc", 162 "drive/fake_free_disk_space_getter.cc",
142 "drive/fake_free_disk_space_getter.h", 163 "drive/fake_free_disk_space_getter.h",
143 "drive/service/dummy_drive_service.cc", 164 "drive/service/dummy_drive_service.cc",
144 "drive/service/dummy_drive_service.h", 165 "drive/service/dummy_drive_service.h",
145 "drive/service/fake_drive_service.cc", 166 "drive/service/fake_drive_service.cc",
146 "drive/service/fake_drive_service.h", 167 "drive/service/fake_drive_service.h",
147 "drive/service/test_util.cc", 168 "drive/service/test_util.cc",
148 "drive/service/test_util.h", 169 "drive/service/test_util.h",
149 ], 170 ],
150 }, 171 },
151 172
152 # TODO(lukasza): drive_unittests target. 173 # TODO(lukasza): drive_unittests target.
153 # Currently tests are built as part of chrome/chrome_tests_unit.gypi. 174 # Currently tests are built as part of chrome/chrome_tests_unit.gypi.
154 ], 175 ],
155 } 176 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/drive/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698