OLD | NEW |
---|---|
(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', | |
17 '../google_apis/google_apis.gyp:google_apis', | |
18 '../net/net.gyp:net', | |
19 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', | |
20 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', | |
21 '../third_party/re2/re2.gyp:re2', | |
jochen (gone - plz use gerrit)
2015/06/26 14:50:53
same here, as long as you include storage and cont
Łukasz Anforowicz
2015/06/26 22:37:23
Makes sense for both storage and content. I've ma
| |
22 ], | |
23 'sources': [ | |
24 'drive/drive_api_util.cc', | |
25 'drive/drive_api_util.h', | |
26 'drive/drive_app_registry.cc', | |
27 'drive/drive_app_registry.h', | |
28 'drive/drive_app_registry_observer.h', | |
29 'drive/drive_notification_manager.cc', | |
30 'drive/drive_notification_manager.h', | |
31 'drive/drive_notification_observer.h', | |
32 'drive/drive_uploader.cc', | |
33 'drive/drive_uploader.h', | |
34 'drive/event_logger.cc', | |
35 'drive/event_logger.h', | |
36 'drive/service/drive_api_service.cc', | |
37 'drive/service/drive_api_service.h', | |
38 'drive/service/drive_service_interface.cc', | |
39 'drive/service/drive_service_interface.h', | |
40 ], | |
41 }, | |
42 | |
43 { | |
44 # GN version: //components/drive:test_support | |
45 'target_name': 'drive_test_support', | |
46 'type': 'static_library', | |
47 'include_dirs': [ | |
48 '..', | |
49 ], | |
50 'dependencies': [ | |
51 'drive', | |
52 '../base/base.gyp:base', | |
53 '../google_apis/google_apis.gyp:google_apis', | |
54 '../net/net.gyp:net', | |
55 ], | |
56 'sources': [ | |
57 "drive/service/dummy_drive_service.cc", | |
58 "drive/service/dummy_drive_service.h", | |
59 "drive/service/fake_drive_service.cc", | |
60 "drive/service/fake_drive_service.h", | |
61 "drive/service/test_util.cc", | |
62 "drive/service/test_util.h", | |
63 ], | |
64 }, | |
65 | |
66 # TODO(lukasza): drive_unittests target. | |
67 # Currently tests are built as part of chrome/chrome_tests_unit.gypi. | |
68 # Drive files that probably should be moved out of chrome_tests_unit.gypi: | |
69 # components/drive/service/drive_api_util_unittest.cc | |
70 # components/drive/service/drive_app_registry_unittest.cc | |
71 # components/drive/service/drive_uploader_unittest.cc | |
72 # components/drive/service/event_logger_unittest.cc | |
73 # components/drive/service/fake_drive_service_unittest.cc | |
74 ], | |
75 } | |
OLD | NEW |