| 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/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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |