| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("sync") { | 8 component("sync") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":sync_core", | 10 ":sync_core", |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 "util/get_session_name_win.cc", | 399 "util/get_session_name_win.cc", |
| 400 "util/get_session_name_win.h", | 400 "util/get_session_name_win.h", |
| 401 "util/logging.cc", | 401 "util/logging.cc", |
| 402 "util/logging.h", | 402 "util/logging.h", |
| 403 "util/nigori.cc", | 403 "util/nigori.cc", |
| 404 "util/nigori.h", | 404 "util/nigori.h", |
| 405 "util/time.cc", | 405 "util/time.cc", |
| 406 "util/time.h", | 406 "util/time.h", |
| 407 ] | 407 ] |
| 408 | 408 |
| 409 configs += [ "//build/config:precompiled_headers" ] | |
| 410 | |
| 411 public_deps = [ | 409 public_deps = [ |
| 412 "//sync/internal_api/attachments/proto", | 410 "//sync/internal_api/attachments/proto", |
| 413 ] | 411 ] |
| 414 deps = [ | 412 deps = [ |
| 415 "//base", | 413 "//base", |
| 416 "//base:i18n", | 414 "//base:i18n", |
| 417 "//base/third_party/dynamic_annotations", | 415 "//base/third_party/dynamic_annotations", |
| 418 "//crypto", | 416 "//crypto", |
| 419 "//google_apis", | 417 "//google_apis", |
| 420 "//net", | 418 "//net", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 "syncable/syncable_id_unittest.cc", | 644 "syncable/syncable_id_unittest.cc", |
| 647 "syncable/syncable_unittest.cc", | 645 "syncable/syncable_unittest.cc", |
| 648 "syncable/syncable_util_unittest.cc", | 646 "syncable/syncable_util_unittest.cc", |
| 649 "util/cryptographer_unittest.cc", | 647 "util/cryptographer_unittest.cc", |
| 650 "util/data_type_histogram_unittest.cc", | 648 "util/data_type_histogram_unittest.cc", |
| 651 "util/get_session_name_unittest.cc", | 649 "util/get_session_name_unittest.cc", |
| 652 "util/nigori_unittest.cc", | 650 "util/nigori_unittest.cc", |
| 653 "util/protobuf_unittest.cc", | 651 "util/protobuf_unittest.cc", |
| 654 ] | 652 ] |
| 655 | 653 |
| 656 configs += [ "//build/config:precompiled_headers" ] | |
| 657 | |
| 658 deps = [ | 654 deps = [ |
| 659 ":test_support_sync_core", | 655 ":test_support_sync_core", |
| 660 ":test_support_sync_internal_api", | 656 ":test_support_sync_internal_api", |
| 661 "//base", | 657 "//base", |
| 662 "//base/allocator", | 658 "//base/allocator", |
| 663 "//base/test:run_all_unittests", | 659 "//base/test:run_all_unittests", |
| 664 "//google_apis", | 660 "//google_apis", |
| 665 "//google_apis:test_support", | 661 "//google_apis:test_support", |
| 666 "//net", | 662 "//net", |
| 667 "//net:test_support", | 663 "//net:test_support", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 ":fake_server_jni", | 805 ":fake_server_jni", |
| 810 ":sync_core", | 806 ":sync_core", |
| 811 ":test_support_sync_fake_server", | 807 ":test_support_sync_fake_server", |
| 812 "//base", | 808 "//base", |
| 813 "//sync/protocol:protocol", | 809 "//sync/protocol:protocol", |
| 814 "//testing/gtest", | 810 "//testing/gtest", |
| 815 "//url:url", | 811 "//url:url", |
| 816 ] | 812 ] |
| 817 } | 813 } |
| 818 } | 814 } |
| OLD | NEW |