| 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", | 9 "change_list_loader.cc", |
| 10 "change_list_loader.h", | 10 "change_list_loader.h", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 ] | 103 ] |
| 104 deps = [ | 104 deps = [ |
| 105 "//base", | 105 "//base", |
| 106 "//base:i18n", | 106 "//base:i18n", |
| 107 "//base:prefs", | 107 "//base:prefs", |
| 108 "//components/invalidation/public", | 108 "//components/invalidation/public", |
| 109 "//components/keyed_service/core", | 109 "//components/keyed_service/core", |
| 110 | 110 |
| 111 # TODO(lukasza): Remove this dependency (see DEPS file for more info). | 111 # TODO(lukasza): Remove this dependency (see DEPS file for more info). |
| 112 "//content/public/browser", | 112 "//content/public/browser", |
| 113 | |
| 114 "//google_apis:google_apis", | 113 "//google_apis:google_apis", |
| 115 "//net:net", | 114 "//net:net", |
| 116 "//third_party/cacheinvalidation", | 115 "//third_party/cacheinvalidation", |
| 117 "//third_party/leveldatabase", | 116 "//third_party/leveldatabase", |
| 118 "//third_party/re2", | 117 "//third_party/re2", |
| 119 ] | 118 ] |
| 120 public_deps = [ | 119 public_deps = [ |
| 121 ":proto", | 120 ":proto", |
| 122 ] | 121 ] |
| 123 } | 122 } |
| (...skipping 25 matching lines...) Expand all Loading... |
| 149 deps = [ | 148 deps = [ |
| 150 ":drive", | 149 ":drive", |
| 151 ":proto", | 150 ":proto", |
| 152 "//base", | 151 "//base", |
| 153 "//base:prefs_test_support", | 152 "//base:prefs_test_support", |
| 154 "//content/test:test_support", | 153 "//content/test:test_support", |
| 155 "//google_apis:test_support", | 154 "//google_apis:test_support", |
| 156 "//net:net", | 155 "//net:net", |
| 157 ] | 156 ] |
| 158 } | 157 } |
| OLD | NEW |