| 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/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 # It means dynamic symbols must be preserved and exported. | 71 # It means dynamic symbols must be preserved and exported. |
| 72 ldflags = [ "-Wl,--export-dynamic" ] | 72 ldflags = [ "-Wl,--export-dynamic" ] |
| 73 | 73 |
| 74 deps += [ | 74 deps += [ |
| 75 ":jni_headers", | 75 ":jni_headers", |
| 76 "//services/native_viewport:lib", | 76 "//services/native_viewport:lib", |
| 77 "//shell/application_manager", | 77 "//shell/application_manager", |
| 78 "//ui/gl", | 78 "//ui/gl", |
| 79 ] | 79 ] |
| 80 } | 80 } |
| 81 |
| 82 if (is_linux) { |
| 83 public_configs = [ "//third_party/nss:system_nss_no_ssl_config" ] |
| 84 } |
| 81 } | 85 } |
| 82 } # !use_prebuilt_mojo_shell | 86 } # !use_prebuilt_mojo_shell |
| 83 | 87 |
| 84 executable("mojo_launcher") { | 88 executable("mojo_launcher") { |
| 85 sources = [ | 89 sources = [ |
| 86 "launcher_main.cc", | 90 "launcher_main.cc", |
| 87 ] | 91 ] |
| 88 | 92 |
| 89 deps = [ | 93 deps = [ |
| 90 ":external_application_registrar_bindings", | 94 ":external_application_registrar_bindings", |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 | 502 |
| 499 deps -= [ | 503 deps -= [ |
| 500 ":lib", | 504 ":lib", |
| 501 ":external_application_registrar_connection", | 505 ":external_application_registrar_connection", |
| 502 ":external_application_registrar_bindings", | 506 ":external_application_registrar_bindings", |
| 503 "//shell/domain_socket", | 507 "//shell/domain_socket", |
| 504 "//shell/domain_socket:tests", | 508 "//shell/domain_socket:tests", |
| 505 ] | 509 ] |
| 506 } | 510 } |
| 507 } | 511 } |
| OLD | NEW |