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