Chromium Code Reviews| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//components/sync/protocol/protocol_sources.gni") | 7 import("//components/sync/protocol/protocol_sources.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 static_library("sync") { | 10 static_library("sync") { |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 554 "//components/signin/core/browser", | 554 "//components/signin/core/browser", |
| 555 "//components/sync/engine_impl/attachments/proto", | 555 "//components/sync/engine_impl/attachments/proto", |
| 556 "//components/version_info", | 556 "//components/version_info", |
| 557 "//crypto", | 557 "//crypto", |
| 558 "//google_apis", | 558 "//google_apis", |
| 559 "//net", | 559 "//net", |
| 560 "//sql", | 560 "//sql", |
| 561 "//third_party/cacheinvalidation", | 561 "//third_party/cacheinvalidation", |
| 562 "//third_party/leveldatabase", | 562 "//third_party/leveldatabase", |
| 563 "//third_party/zlib", | 563 "//third_party/zlib", |
| 564 "//third_party/zlib:compression_utils", | |
|
Ilya Sherman
2016/10/19 23:35:56
Did you just want me to review this added dependen
Gang Wu
2016/10/19 23:38:42
Yes, for this dependency.
| |
| 564 "//url", | 565 "//url", |
| 565 ] | 566 ] |
| 566 | 567 |
| 567 if (is_android) { | 568 if (is_android) { |
| 568 deps += [ "//components/sync/android:jni_headers" ] | 569 deps += [ "//components/sync/android:jni_headers" ] |
| 569 sources += [ | 570 sources += [ |
| 570 "android/model_type_helper.cc", | 571 "android/model_type_helper.cc", |
| 571 "android/model_type_helper.h", | 572 "android/model_type_helper.h", |
| 572 "android/sync_jni_registrar.cc", | 573 "android/sync_jni_registrar.cc", |
| 573 "android/sync_jni_registrar.h", | 574 "android/sync_jni_registrar.h", |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1095 deps = [ | 1096 deps = [ |
| 1096 ":fake_server_jni", | 1097 ":fake_server_jni", |
| 1097 ":sync", | 1098 ":sync", |
| 1098 ":test_support_fake_server", | 1099 ":test_support_fake_server", |
| 1099 "//base", | 1100 "//base", |
| 1100 "//testing/gtest", | 1101 "//testing/gtest", |
| 1101 "//url:url", | 1102 "//url:url", |
| 1102 ] | 1103 ] |
| 1103 } | 1104 } |
| 1104 } | 1105 } |
| OLD | NEW |