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

Side by Side Diff: mojo/services/network/BUILD.gn

Issue 1236503002: GN: Use lib.unstripped rather than lib.stripped. Add a toolchain.gni (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn15
Patch Set: add comment Created 5 years, 4 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 | « mojo/runner/BUILD.gn ('k') | third_party/cython/rules.gni » ('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("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 9
10 java_library_path = "$target_out_dir/java_library.dex.jar" 10 java_library_path = "$target_out_dir/java_library.dex.jar"
11 11
12 mojo_android_application("network") { 12 mojo_android_application("network") {
13 output_name = "network_service" 13 output_name = "network_service"
14 input_so = "$root_out_dir/lib.stripped/libnetwork_service$android_product_ex tension" 14 input_so = "$root_shlib_dir/${shlib_prefix}network_service$shlib_extension"
15 input_dex_jar = java_library_path 15 input_dex_jar = java_library_path
16 deps = [ 16 deps = [
17 ":java_library", 17 ":java_library",
18 ":native_library", 18 ":native_library",
19 ] 19 ]
20 } 20 }
21 21
22 shared_library("native_library") { 22 shared_library("native_library") {
23 output_name = "network_service" 23 output_name = "network_service"
24 24
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "//mojo/common:common_base", 142 "//mojo/common:common_base",
143 "//mojo/message_pump", 143 "//mojo/message_pump",
144 "//mojo/services/network/public/cpp", 144 "//mojo/services/network/public/cpp",
145 "//mojo/services/network/public/interfaces", 145 "//mojo/services/network/public/interfaces",
146 "//net", 146 "//net",
147 "//net:test_support", 147 "//net:test_support",
148 "//testing/gtest", 148 "//testing/gtest",
149 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 149 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
150 ] 150 ]
151 } 151 }
OLDNEW
« no previous file with comments | « mojo/runner/BUILD.gn ('k') | third_party/cython/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698