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

Side by Side Diff: mojo/runner/BUILD.gn

Issue 1144613002: Fix Mandoline ASAN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « no previous file | 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/generate_mojo_shell_assets_list.gni") 6 import("//mojo/generate_mojo_shell_assets_list.gni")
7 import("//third_party/mojo/src/mojo/public/mojo.gni") 7 import("//third_party/mojo/src/mojo/public/mojo.gni")
8 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 8 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
9 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 9 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 if (is_android) { 72 if (is_android) {
73 sources = [ 73 sources = [
74 "android/context_init.cc", 74 "android/context_init.cc",
75 ] 75 ]
76 76
77 # On android, the executable is also the native library used by the apk. 77 # On android, the executable is also the native library used by the apk.
78 # It means dynamic symbols must be preserved and exported. 78 # It means dynamic symbols must be preserved and exported.
79 ldflags = [ "-Wl,--export-dynamic" ] 79 ldflags = [ "-Wl,--export-dynamic" ]
80 } 80 }
81
82 deps += [ "//build/config/sanitizers:deps" ]
81 } 83 }
82 84
83 source_set("in_process_native_runner") { 85 source_set("in_process_native_runner") {
84 sources = [ 86 sources = [
85 "in_process_native_runner.cc", 87 "in_process_native_runner.cc",
86 "in_process_native_runner.h", 88 "in_process_native_runner.h",
87 ] 89 ]
88 90
89 public_deps = [ 91 public_deps = [
90 ":native_application_support", 92 ":native_application_support",
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 #"//mojo/services/http_server/public/interfaces", 437 #"//mojo/services/http_server/public/interfaces",
436 "//mojo/services/network/public/interfaces", 438 "//mojo/services/network/public/interfaces",
437 439
438 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 440 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
439 "//third_party/mojo/src/mojo/public/cpp/environment", 441 "//third_party/mojo/src/mojo/public/cpp/environment",
440 "//third_party/mojo/src/mojo/public/cpp/system:system", 442 "//third_party/mojo/src/mojo/public/cpp/system:system",
441 ] 443 ]
442 444
443 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] 445 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ]
444 } 446 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698