| 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 public_deps = [ | 8 public_deps = [ |
| 9 ":sync_core", | 9 ":sync_core", |
| 10 "//sync/protocol", | 10 "//sync/protocol", |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 "//base", | 397 "//base", |
| 398 "//base:i18n", | 398 "//base:i18n", |
| 399 "//base/third_party/dynamic_annotations", | 399 "//base/third_party/dynamic_annotations", |
| 400 "//crypto", | 400 "//crypto", |
| 401 "//google_apis", | 401 "//google_apis", |
| 402 "//net", | 402 "//net", |
| 403 "//sql", | 403 "//sql", |
| 404 "//third_party/leveldatabase", | 404 "//third_party/leveldatabase", |
| 405 "//third_party/zlib", | 405 "//third_party/zlib", |
| 406 "//url", | 406 "//url", |
| 407 "//sync/internal_api/attachments/proto", |
| 407 "//sync/protocol", | 408 "//sync/protocol", |
| 408 ] | 409 ] |
| 409 | 410 |
| 410 if (is_chromeos) { | 411 if (is_chromeos) { |
| 411 # Required by get_session_name.cc on Chrome OS. | 412 # Required by get_session_name.cc on Chrome OS. |
| 412 deps += [ | 413 deps += [ |
| 413 "//chromeos" | 414 "//chromeos" |
| 414 ] | 415 ] |
| 415 } | 416 } |
| 416 | 417 |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 | 626 |
| 626 deps = [ | 627 deps = [ |
| 627 "//base", | 628 "//base", |
| 628 "//base/allocator", | 629 "//base/allocator", |
| 629 "//base/test:run_all_unittests", | 630 "//base/test:run_all_unittests", |
| 630 "//google_apis", | 631 "//google_apis", |
| 631 "//google_apis:test_support", | 632 "//google_apis:test_support", |
| 632 "//net", | 633 "//net", |
| 633 "//net:test_support", | 634 "//net:test_support", |
| 634 "//sql", | 635 "//sql", |
| 636 "//sync", |
| 635 "//testing/gmock", | 637 "//testing/gmock", |
| 636 "//testing/gtest", | 638 "//testing/gtest", |
| 639 "//third_party/leveldatabase", |
| 637 "//third_party/protobuf:protobuf_lite", | 640 "//third_party/protobuf:protobuf_lite", |
| 638 "//sync", | |
| 639 ":test_support_sync_core", | 641 ":test_support_sync_core", |
| 640 ":test_support_sync_internal_api", | 642 ":test_support_sync_internal_api", |
| 641 ] | 643 ] |
| 642 | 644 |
| 643 # TODO(GYP) | 645 # TODO(GYP) |
| 644 # ['OS == "android"', { | 646 # ['OS == "android"', { |
| 645 # 'dependencies': [ | 647 # 'dependencies': [ |
| 646 # '../testing/android/native_test.gyp:native_test_native_code', | 648 # '../testing/android/native_test.gyp:native_test_native_code', |
| 647 # ], | 649 # ], |
| 648 # }], | 650 # }], |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 } | 812 } |
| 811 | 813 |
| 812 # GYP: //sync/sync_tests.gypi:sync_unit_tests_apk | 814 # GYP: //sync/sync_tests.gypi:sync_unit_tests_apk |
| 813 unittest_apk("sync_unit_tests_apk") { | 815 unittest_apk("sync_unit_tests_apk") { |
| 814 unittests_dep = ":sync_unit_tests" | 816 unittests_dep = ":sync_unit_tests" |
| 815 deps = [ | 817 deps = [ |
| 816 ":sync_unit_tests", | 818 ":sync_unit_tests", |
| 817 ] | 819 ] |
| 818 } | 820 } |
| 819 } | 821 } |
| OLD | NEW |