| 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("//sync/protocol/protocol_sources.gni") | 6 import("//sync/protocol/protocol_sources.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 component("sync") { | 9 component("sync") { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 "util/logging.h", | 421 "util/logging.h", |
| 422 "util/nigori.cc", | 422 "util/nigori.cc", |
| 423 "util/nigori.h", | 423 "util/nigori.h", |
| 424 "util/time.cc", | 424 "util/time.cc", |
| 425 "util/time.h", | 425 "util/time.h", |
| 426 ] | 426 ] |
| 427 | 427 |
| 428 configs += [ "//build/config:precompiled_headers" ] | 428 configs += [ "//build/config:precompiled_headers" ] |
| 429 | 429 |
| 430 public_deps = [ | 430 public_deps = [ |
| 431 "//net", |
| 431 "//sync/internal_api/attachments/proto", | 432 "//sync/internal_api/attachments/proto", |
| 432 ] | 433 ] |
| 433 deps = [ | 434 deps = [ |
| 434 "//base", | 435 "//base", |
| 435 "//base:i18n", | 436 "//base:i18n", |
| 436 "//base/third_party/dynamic_annotations", | 437 "//base/third_party/dynamic_annotations", |
| 437 "//crypto", | 438 "//crypto", |
| 438 "//google_apis", | 439 "//google_apis", |
| 439 "//net", | |
| 440 "//sql", | 440 "//sql", |
| 441 "//sync/protocol", | 441 "//sync/protocol", |
| 442 "//third_party/leveldatabase", | 442 "//third_party/leveldatabase", |
| 443 "//third_party/zlib", | 443 "//third_party/zlib", |
| 444 "//url", | 444 "//url", |
| 445 ] | 445 ] |
| 446 | 446 |
| 447 if (is_android) { | 447 if (is_android) { |
| 448 deps += [ "//sync/android:jni_headers" ] | 448 deps += [ "//sync/android:jni_headers" ] |
| 449 sources += [ | 449 sources += [ |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 ":fake_server_jni", | 878 ":fake_server_jni", |
| 879 ":sync_core", | 879 ":sync_core", |
| 880 ":test_support_sync_fake_server", | 880 ":test_support_sync_fake_server", |
| 881 "//base", | 881 "//base", |
| 882 "//sync/protocol:protocol", | 882 "//sync/protocol:protocol", |
| 883 "//testing/gtest", | 883 "//testing/gtest", |
| 884 "//url:url", | 884 "//url:url", |
| 885 ] | 885 ] |
| 886 } | 886 } |
| 887 } | 887 } |
| OLD | NEW |