| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 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 | 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 source_set("drive") { | 7 source_set("drive") { |
| 8 sources = [ | 8 sources = [ |
| 9 "change_list_loader.cc", |
| 10 "change_list_loader.h", |
| 11 "change_list_loader_observer.h", |
| 12 "change_list_processor.cc", |
| 13 "change_list_processor.h", |
| 9 "drive_api_util.cc", | 14 "drive_api_util.cc", |
| 10 "drive_api_util.h", | 15 "drive_api_util.h", |
| 11 "drive_app_registry.cc", | 16 "drive_app_registry.cc", |
| 12 "drive_app_registry.h", | 17 "drive_app_registry.h", |
| 13 "drive_app_registry_observer.h", | 18 "drive_app_registry_observer.h", |
| 14 "drive_notification_manager.cc", | 19 "drive_notification_manager.cc", |
| 15 "drive_notification_manager.h", | 20 "drive_notification_manager.h", |
| 16 "drive_notification_observer.h", | 21 "drive_notification_observer.h", |
| 17 "drive_pref_names.cc", | 22 "drive_pref_names.cc", |
| 18 "drive_pref_names.h", | 23 "drive_pref_names.h", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 ] | 92 ] |
| 88 deps = [ | 93 deps = [ |
| 89 ":drive", | 94 ":drive", |
| 90 ":proto", | 95 ":proto", |
| 91 "//base:base", | 96 "//base:base", |
| 92 "//content/test:test_support", | 97 "//content/test:test_support", |
| 93 "//google_apis:google_apis", | 98 "//google_apis:google_apis", |
| 94 "//net:net", | 99 "//net:net", |
| 95 ] | 100 ] |
| 96 } | 101 } |
| OLD | NEW |