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 static_library("drive") { | 7 static_library("drive") { |
8 sources = [ | 8 sources = [ |
9 "drive_api_util.cc", | 9 "drive_api_util.cc", |
10 "drive_api_util.h", | 10 "drive_api_util.h", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "//net:net", | 61 "//net:net", |
62 "//third_party/cacheinvalidation", | 62 "//third_party/cacheinvalidation", |
63 "//third_party/leveldatabase", | 63 "//third_party/leveldatabase", |
64 "//third_party/re2", | 64 "//third_party/re2", |
65 ] | 65 ] |
66 public_deps = [ | 66 public_deps = [ |
67 ":proto", | 67 ":proto", |
68 ] | 68 ] |
69 } | 69 } |
70 | 70 |
71 source_set("drive_chromeos") { | 71 static_library("drive_chromeos") { |
72 sources = [ | 72 sources = [ |
73 "chromeos/change_list_loader.cc", | 73 "chromeos/change_list_loader.cc", |
74 "chromeos/change_list_loader.h", | 74 "chromeos/change_list_loader.h", |
75 "chromeos/change_list_loader_observer.h", | 75 "chromeos/change_list_loader_observer.h", |
76 "chromeos/change_list_processor.cc", | 76 "chromeos/change_list_processor.cc", |
77 "chromeos/change_list_processor.h", | 77 "chromeos/change_list_processor.h", |
78 "chromeos/directory_loader.cc", | 78 "chromeos/directory_loader.cc", |
79 "chromeos/directory_loader.h", | 79 "chromeos/directory_loader.h", |
80 "chromeos/file_cache.cc", | 80 "chromeos/file_cache.cc", |
81 "chromeos/file_cache.h", | 81 "chromeos/file_cache.h", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 ":drive", | 182 ":drive", |
183 ":drive_chromeos", | 183 ":drive_chromeos", |
184 ":proto", | 184 ":proto", |
185 "//base", | 185 "//base", |
186 "//components/prefs:test_support", | 186 "//components/prefs:test_support", |
187 "//content/test:test_support", | 187 "//content/test:test_support", |
188 "//google_apis:test_support", | 188 "//google_apis:test_support", |
189 ] | 189 ] |
190 } | 190 } |
191 } | 191 } |
OLD | NEW |