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

Unified 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: Added specific owners for components/drive.gypi 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 side-by-side diff with in-line comments
Download patch
Index: components/drive.gypi
diff --git a/components/drive.gypi b/components/drive.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..14afb4d5505375757ff43548ff6ef14dbb32e2c2
--- /dev/null
+++ b/components/drive.gypi
@@ -0,0 +1,75 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/drive:drive
+ 'target_name': 'drive',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../components/components.gyp:invalidation',
+ '../google_apis/google_apis.gyp:google_apis',
+ '../net/net.gyp:net',
+ '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
+ '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_proto_cpp',
+ '../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
+ ],
+ 'sources': [
+ 'drive/drive_api_util.cc',
+ 'drive/drive_api_util.h',
+ 'drive/drive_app_registry.cc',
+ 'drive/drive_app_registry.h',
+ 'drive/drive_app_registry_observer.h',
+ 'drive/drive_notification_manager.cc',
+ 'drive/drive_notification_manager.h',
+ 'drive/drive_notification_observer.h',
+ 'drive/drive_uploader.cc',
+ 'drive/drive_uploader.h',
+ 'drive/event_logger.cc',
+ 'drive/event_logger.h',
+ 'drive/service/drive_api_service.cc',
+ 'drive/service/drive_api_service.h',
+ 'drive/service/drive_service_interface.cc',
+ 'drive/service/drive_service_interface.h',
+ ],
+ },
+
+ {
+ # GN version: //components/drive:test_support
+ 'target_name': 'drive_test_support',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ 'drive',
+ '../base/base.gyp:base',
+ '../google_apis/google_apis.gyp:google_apis',
+ '../net/net.gyp:net',
+ ],
+ 'sources': [
+ "drive/service/dummy_drive_service.cc",
+ "drive/service/dummy_drive_service.h",
+ "drive/service/fake_drive_service.cc",
+ "drive/service/fake_drive_service.h",
+ "drive/service/test_util.cc",
+ "drive/service/test_util.h",
+ ],
+ },
+
+ # TODO(lukasza): drive_unittests target.
+ # Currently tests are built as part of chrome/chrome_tests_unit.gypi.
+ # Drive files that probably should be moved out of chrome_tests_unit.gypi:
+ # components/drive/service/drive_api_util_unittest.cc
+ # components/drive/service/drive_app_registry_unittest.cc
+ # components/drive/service/drive_uploader_unittest.cc
+ # components/drive/service/event_logger_unittest.cc
+ # components/drive/service/fake_drive_service_unittest.cc
+ ],
+}
« no previous file with comments | « components/components.gyp ('k') | components/drive/BUILD.gn » ('j') | components/drive/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698