| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //components/drive:drive | 8 # GN version: //components/drive:drive |
| 9 'target_name': 'drive', | 9 'target_name': 'drive', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'drive_proto', | 15 'drive_proto', |
| 16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
| 17 '../components/components.gyp:invalidation_public', | 17 '../components/components.gyp:invalidation_public', |
| 18 | 18 |
| 19 # TODO(lukasza): Remove this dependency (see DEPS file for more info). | 19 # TODO(lukasza): Remove this dependency (see DEPS file for more info). |
| 20 '../content/content.gyp:content_browser', | 20 '../content/content.gyp:content_browser', |
| 21 | 21 |
| 22 '../google_apis/google_apis.gyp:google_apis', | 22 '../google_apis/google_apis.gyp:google_apis', |
| 23 '../net/net.gyp:net', | 23 '../net/net.gyp:net', |
| 24 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 24 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| 25 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', | 25 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', |
| 26 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 26 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 27 '../third_party/re2/re2.gyp:re2', | 27 '../third_party/re2/re2.gyp:re2', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 'drive/change_list_loader.cc', |
| 31 'drive/change_list_loader.h', |
| 32 'drive/change_list_loader_observer.h', |
| 33 'drive/change_list_processor.cc', |
| 34 'drive/change_list_processor.h', |
| 30 'drive/drive_api_util.cc', | 35 'drive/drive_api_util.cc', |
| 31 'drive/drive_api_util.h', | 36 'drive/drive_api_util.h', |
| 32 'drive/drive_app_registry.cc', | 37 'drive/drive_app_registry.cc', |
| 33 'drive/drive_app_registry.h', | 38 'drive/drive_app_registry.h', |
| 34 'drive/drive_app_registry_observer.h', | 39 'drive/drive_app_registry_observer.h', |
| 35 'drive/drive_notification_manager.cc', | 40 'drive/drive_notification_manager.cc', |
| 36 'drive/drive_notification_manager.h', | 41 'drive/drive_notification_manager.h', |
| 37 'drive/drive_notification_observer.h', | 42 'drive/drive_notification_observer.h', |
| 38 'drive/drive_pref_names.cc', | 43 'drive/drive_pref_names.cc', |
| 39 'drive/drive_pref_names.h', | 44 'drive/drive_pref_names.h', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "drive/service/fake_drive_service.h", | 114 "drive/service/fake_drive_service.h", |
| 110 "drive/service/test_util.cc", | 115 "drive/service/test_util.cc", |
| 111 "drive/service/test_util.h", | 116 "drive/service/test_util.h", |
| 112 ], | 117 ], |
| 113 }, | 118 }, |
| 114 | 119 |
| 115 # TODO(lukasza): drive_unittests target. | 120 # TODO(lukasza): drive_unittests target. |
| 116 # Currently tests are built as part of chrome/chrome_tests_unit.gypi. | 121 # Currently tests are built as part of chrome/chrome_tests_unit.gypi. |
| 117 ], | 122 ], |
| 118 } | 123 } |
| OLD | NEW |