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

Side by Side Diff: components/drive/BUILD.gn

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/drive.gypi ('k') | components/drive/DEPS » ('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 (c) 2015 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 source_set("drive") {
6 sources = [
7 "drive_api_util.cc",
8 "drive_api_util.h",
9 "drive_app_registry.cc",
10 "drive_app_registry.h",
11 "drive_app_registry_observer.h",
12 "drive_notification_manager.cc",
13 "drive_notification_manager.h",
14 "drive_notification_observer.h",
15 "drive_uploader.cc",
16 "drive_uploader.h",
17 "event_logger.cc",
18 "event_logger.h",
19 "service/drive_api_service.cc",
20 "service/drive_api_service.h",
21 "service/drive_service_interface.cc",
22 "service/drive_service_interface.h",
23 ]
24 deps = [
25 "//base:base",
26 "//components/invalidation/public",
27
28 # TODO(lukasza): Remove this dependency (see DEPS file for more info).
29 "//content/public/browser:browser",
30
31 "//google_apis:google_apis",
32 "//net:net",
33
34 # TODO(lukasza): Remove this dependency (see DEPS file for more info).
35 "//storage/browser:browser",
36
37 "//third_party/re2:re2",
38 ]
39 }
40
41 source_set("test_support") {
42 testonly = true
43 sources = [
44 "service/dummy_drive_service.cc",
45 "service/dummy_drive_service.h",
46 "service/fake_drive_service.cc",
47 "service/fake_drive_service.h",
48 "service/test_util.cc",
49 "service/test_util.h",
50 ]
51 deps = [
52 ":drive",
53 "//base:base",
54 "//google_apis:google_apis",
55 "//net:net",
56 ]
57 }
OLDNEW
« no previous file with comments | « components/drive.gypi ('k') | components/drive/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698