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

Side by Side Diff: shell/BUILD.gn

Issue 957303002: Make mojo_shell depend on NSS on Linux. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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/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
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
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 }
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