| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 "util/get_session_name.cc", | 392 "util/get_session_name.cc", |
| 393 "util/get_session_name.h", | 393 "util/get_session_name.h", |
| 394 "util/get_session_name_ios.h", | 394 "util/get_session_name_ios.h", |
| 395 "util/get_session_name_ios.mm", | 395 "util/get_session_name_ios.mm", |
| 396 "util/get_session_name_linux.cc", | 396 "util/get_session_name_linux.cc", |
| 397 "util/get_session_name_linux.h", | 397 "util/get_session_name_linux.h", |
| 398 "util/get_session_name_mac.h", | 398 "util/get_session_name_mac.h", |
| 399 "util/get_session_name_mac.mm", | 399 "util/get_session_name_mac.mm", |
| 400 "util/get_session_name_win.cc", | 400 "util/get_session_name_win.cc", |
| 401 "util/get_session_name_win.h", | 401 "util/get_session_name_win.h", |
| 402 "util/invalidation_helper.cc", |
| 403 "util/invalidation_helper.h", |
| 402 "util/logging.cc", | 404 "util/logging.cc", |
| 403 "util/logging.h", | 405 "util/logging.h", |
| 404 "util/nigori.cc", | 406 "util/nigori.cc", |
| 405 "util/nigori.h", | 407 "util/nigori.h", |
| 406 "util/time.cc", | 408 "util/time.cc", |
| 407 "util/time.h", | 409 "util/time.h", |
| 408 ] | 410 ] |
| 409 | 411 |
| 410 configs += [ "//build/config:precompiled_headers" ] | 412 configs += [ "//build/config:precompiled_headers" ] |
| 411 | 413 |
| 412 public_deps = [ | 414 public_deps = [ |
| 413 "//sync/internal_api/attachments/proto", | 415 "//sync/internal_api/attachments/proto", |
| 414 ] | 416 ] |
| 415 deps = [ | 417 deps = [ |
| 416 "//base", | 418 "//base", |
| 417 "//base:i18n", | 419 "//base:i18n", |
| 418 "//base/third_party/dynamic_annotations", | 420 "//base/third_party/dynamic_annotations", |
| 421 "//components/invalidation/public", |
| 419 "//crypto", | 422 "//crypto", |
| 420 "//google_apis", | 423 "//google_apis", |
| 421 "//net", | 424 "//net", |
| 422 "//sql", | 425 "//sql", |
| 426 "//third_party/cacheinvalidation", |
| 423 "//third_party/leveldatabase", | 427 "//third_party/leveldatabase", |
| 424 "//third_party/zlib", | 428 "//third_party/zlib", |
| 425 "//url", | 429 "//url", |
| 426 "//sync/protocol", | 430 "//sync/protocol", |
| 427 ] | 431 ] |
| 428 | 432 |
| 429 if (is_android) { | 433 if (is_android) { |
| 430 deps += [ "//sync/android:jni_headers" ] | 434 deps += [ "//sync/android:jni_headers" ] |
| 431 sources += [ | 435 sources += [ |
| 432 "android/model_type_helper.cc", | 436 "android/model_type_helper.cc", |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 ":fake_server_jni", | 849 ":fake_server_jni", |
| 846 ":sync_core", | 850 ":sync_core", |
| 847 ":test_support_sync_fake_server", | 851 ":test_support_sync_fake_server", |
| 848 "//base", | 852 "//base", |
| 849 "//sync/protocol:protocol", | 853 "//sync/protocol:protocol", |
| 850 "//testing/gtest", | 854 "//testing/gtest", |
| 851 "//url:url", | 855 "//url:url", |
| 852 ] | 856 ] |
| 853 } | 857 } |
| 854 } | 858 } |
| OLD | NEW |