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

Side by Side Diff: components/drive.gypi

Issue 1190203002: Move (most of) chrome/browser/drive into components/drive/service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 5 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
« no previous file with comments | « components/components.gyp ('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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/drive:drive
9 'target_name': 'drive',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../components/components.gyp:invalidation_public',
17
18 # TODO(lukasza): Remove this dependency (see DEPS file for more info).
19 '../content/content.gyp:content_browser',
20
21 '../google_apis/google_apis.gyp:google_apis',
22 '../net/net.gyp:net',
23
24 # TODO(lukasza): Remove this dependency (see DEPS file for more info).
25 '../storage/storage_browser.gyp:storage',
26
27 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
28 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
29 '../third_party/re2/re2.gyp:re2',
30 ],
31 'sources': [
32 'drive/drive_api_util.cc',
33 'drive/drive_api_util.h',
34 'drive/drive_app_registry.cc',
35 'drive/drive_app_registry.h',
36 'drive/drive_app_registry_observer.h',
37 'drive/drive_notification_manager.cc',
38 'drive/drive_notification_manager.h',
39 'drive/drive_notification_observer.h',
40 'drive/drive_uploader.cc',
41 'drive/drive_uploader.h',
42 'drive/event_logger.cc',
43 'drive/event_logger.h',
44 'drive/service/drive_api_service.cc',
45 'drive/service/drive_api_service.h',
46 'drive/service/drive_service_interface.cc',
47 'drive/service/drive_service_interface.h',
48 ],
49 },
50
51 {
52 # GN version: //components/drive:test_support
53 'target_name': 'drive_test_support',
54 'type': 'static_library',
55 'include_dirs': [
56 '..',
57 ],
58 'dependencies': [
59 'drive',
60 '../base/base.gyp:base',
61 '../google_apis/google_apis.gyp:google_apis',
62 '../net/net.gyp:net',
63 ],
64 'sources': [
65 "drive/service/dummy_drive_service.cc",
66 "drive/service/dummy_drive_service.h",
67 "drive/service/fake_drive_service.cc",
68 "drive/service/fake_drive_service.h",
69 "drive/service/test_util.cc",
70 "drive/service/test_util.h",
71 ],
72 },
73
74 # TODO(lukasza): drive_unittests target.
75 # Currently tests are built as part of chrome/chrome_tests_unit.gypi.
76 # Drive files that probably should be moved out of chrome_tests_unit.gypi:
77 # components/drive/service/drive_api_util_unittest.cc
78 # components/drive/service/drive_app_registry_unittest.cc
79 # components/drive/service/drive_uploader_unittest.cc
80 # components/drive/service/event_logger_unittest.cc
81 # components/drive/service/fake_drive_service_unittest.cc
82 ],
83 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/drive/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698