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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 component("sync") { | 7 component("sync") { |
8 deps = [ | 8 deps = [ |
9 ":sync_core", | 9 ":sync_core", |
10 "//sync/protocol", | 10 "//sync/protocol", |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 "util/logging.h", | 389 "util/logging.h", |
390 "util/nigori.cc", | 390 "util/nigori.cc", |
391 "util/nigori.h", | 391 "util/nigori.h", |
392 "util/time.cc", | 392 "util/time.cc", |
393 "util/time.h", | 393 "util/time.h", |
394 ] | 394 ] |
395 | 395 |
396 deps = [ | 396 deps = [ |
397 "//base", | 397 "//base", |
398 "//base:i18n", | 398 "//base:i18n", |
| 399 "//base/third_party/dynamic_annotations", |
399 "//crypto", | 400 "//crypto", |
400 "//google_apis", | 401 "//google_apis", |
401 "//net", | 402 "//net", |
402 "//sql", | 403 "//sql", |
403 "//third_party/zlib", | 404 "//third_party/zlib", |
404 "//url", | 405 "//url", |
405 "//sync/protocol", | 406 "//sync/protocol", |
406 ] | 407 ] |
407 | 408 |
408 if (is_chromeos) { | 409 if (is_chromeos) { |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 "//base", | 769 "//base", |
769 "//base/test:test_support", | 770 "//base/test:test_support", |
770 "//net:test_support", | 771 "//net:test_support", |
771 "//testing/gtest", | 772 "//testing/gtest", |
772 ":test_support_sync_testserver", | 773 ":test_support_sync_testserver", |
773 ] | 774 ] |
774 } | 775 } |
775 } | 776 } |
776 | 777 |
777 #TODO(GYP): Need to port sync_android.gypi and Android test targets. | 778 #TODO(GYP): Need to port sync_android.gypi and Android test targets. |
OLD | NEW |