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

Side by Side Diff: sync/BUILD.gn

Issue 1318343003: Annotate GN executables and shared_libraries with sanitizer deps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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') | third_party/android_platform/BUILD.gn » ('j') | 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("//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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 793
794 if (!is_ios) { 794 if (!is_ios) {
795 # GYP version: sync/sync_tests.gypi:run_sync_testserver 795 # GYP version: sync/sync_tests.gypi:run_sync_testserver
796 executable("run_sync_testserver") { 796 executable("run_sync_testserver") {
797 testonly = true 797 testonly = true
798 sources = [ 798 sources = [
799 "tools/testserver/run_sync_testserver.cc", 799 "tools/testserver/run_sync_testserver.cc",
800 ] 800 ]
801 801
802 deps = [ 802 deps = [
803 ":test_support_sync_testserver",
803 "//base", 804 "//base",
804 "//base/test:test_support", 805 "//base/test:test_support",
806 "//build/config/sanitizers:deps",
805 "//net:test_support", 807 "//net:test_support",
806 "//testing/gtest", 808 "//testing/gtest",
807 ":test_support_sync_testserver",
808 ] 809 ]
809 } 810 }
810 } 811 }
811 812
812 if (is_android) { 813 if (is_android) {
813 import("//build/config/android/rules.gni") 814 import("//build/config/android/rules.gni")
814 815
815 # GYP: //sync/sync_tests.gypi:fake_server_jni 816 # GYP: //sync/sync_tests.gypi:fake_server_jni
816 generate_jni("fake_server_jni") { 817 generate_jni("fake_server_jni") {
817 testonly = true 818 testonly = true
(...skipping 26 matching lines...) Expand all
844 ":fake_server_jni", 845 ":fake_server_jni",
845 ":sync_core", 846 ":sync_core",
846 ":test_support_sync_fake_server", 847 ":test_support_sync_fake_server",
847 "//base", 848 "//base",
848 "//sync/protocol:protocol", 849 "//sync/protocol:protocol",
849 "//testing/gtest", 850 "//testing/gtest",
850 "//url:url", 851 "//url:url",
851 ] 852 ]
852 } 853 }
853 } 854 }
OLDNEW
« no previous file with comments | « storage/browser/BUILD.gn ('k') | third_party/android_platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698