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 "drive_api_util.cc", | 9 "drive_api_util.cc", |
10 "drive_api_util.h", | 10 "drive_api_util.h", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 ] | 49 ] |
50 deps = [ | 50 deps = [ |
51 "//base", | 51 "//base", |
52 "//base:i18n", | 52 "//base:i18n", |
53 "//components/invalidation/public", | 53 "//components/invalidation/public", |
54 "//components/keyed_service/core", | 54 "//components/keyed_service/core", |
55 "//components/prefs", | 55 "//components/prefs", |
56 | 56 |
57 # TODO(lukasza): Remove this dependency (see DEPS file for more info). | 57 # TODO(lukasza): Remove this dependency (see DEPS file for more info). |
58 "//content/public/browser", | 58 "//content/public/browser", |
59 "//device/power_save_blocker", | |
60 "//google_apis:google_apis", | 59 "//google_apis:google_apis", |
61 "//net:net", | 60 "//net:net", |
62 "//third_party/cacheinvalidation", | 61 "//third_party/cacheinvalidation", |
63 "//third_party/leveldatabase", | 62 "//third_party/leveldatabase", |
64 "//third_party/re2", | 63 "//third_party/re2", |
65 ] | 64 ] |
66 public_deps = [ | 65 public_deps = [ |
67 ":proto", | 66 ":proto", |
68 ] | 67 ] |
69 } | 68 } |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 deps = [ | 179 deps = [ |
181 ":drive", | 180 ":drive", |
182 ":drive_chromeos", | 181 ":drive_chromeos", |
183 ":proto", | 182 ":proto", |
184 "//base", | 183 "//base", |
185 "//components/prefs:test_support", | 184 "//components/prefs:test_support", |
186 "//content/test:test_support", | 185 "//content/test:test_support", |
187 "//google_apis:test_support", | 186 "//google_apis:test_support", |
188 ] | 187 ] |
189 } | 188 } |
OLD | NEW |