Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: sync/BUILD.gn

Issue 1969503002: Address more TOOD(GYP) in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « storage/browser/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 ] 794 ]
795 795
796 configs += [ "//build/config/compiler:wexit_time_destructors" ] 796 configs += [ "//build/config/compiler:wexit_time_destructors" ]
797 797
798 public_deps = [ 798 public_deps = [
799 "//base", 799 "//base",
800 "//net:test_support", 800 "//net:test_support",
801 ] 801 ]
802 deps = [ 802 deps = [
803 ":sync", 803 ":sync",
804
804 # The sync test server uses Python modules generated by the sync protos. 805 # The sync test server uses Python modules generated by the sync protos.
805 # '../third_party/protobuf/protobuf.gyp:py_proto', # TODO(GYP) 806 "//third_party/protobuf:py_proto",
806 ] 807 ]
807 } 808 }
808 809
809 if (!is_ios) { 810 if (!is_ios) {
810 # GYP version: sync/sync_tests.gypi:run_sync_testserver 811 # GYP version: sync/sync_tests.gypi:run_sync_testserver
811 executable("run_sync_testserver") { 812 executable("run_sync_testserver") {
812 testonly = true 813 testonly = true
813 sources = [ 814 sources = [
814 "tools/testserver/run_sync_testserver.cc", 815 "tools/testserver/run_sync_testserver.cc",
815 ] 816 ]
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 ":fake_server_jni", 891 ":fake_server_jni",
891 ":sync_core", 892 ":sync_core",
892 ":test_support_sync_fake_server", 893 ":test_support_sync_fake_server",
893 "//base", 894 "//base",
894 "//sync/protocol:protocol", 895 "//sync/protocol:protocol",
895 "//testing/gtest", 896 "//testing/gtest",
896 "//url:url", 897 "//url:url",
897 ] 898 ]
898 } 899 }
899 } 900 }
OLDNEW
« no previous file with comments | « storage/browser/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698