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

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: Fixed copyright headers in the new files. Created 5 years, 6 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
(Empty)
1 # Copyright 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:invalidation",
27 "//google_apis:google_apis",
28 "//net:net",
29 "//third_party/re2:re2",
30 ]
31 }
32
33 source_set("test_support") {
34 sources = [
35 "service/dummy_drive_service.cc",
36 "service/dummy_drive_service.h",
37 "service/fake_drive_service.cc",
38 "service/fake_drive_service.h",
39 "service/test_util.cc",
40 "service/test_util.h",
41 ]
42 deps = [
43 ":drive",
44 "//base:base",
45 "//google_apis:google_apis",
46 "//net:net",
47 ]
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698