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

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

Issue 1230973004: Upload symbols when uploading artifacts. (Closed) Base URL: https://github.com/domokit/monet.git@add_tracing
Patch Set: Use devtools for signature Created 5 years, 5 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 | « claude.py ('k') | tools/upload_service.py » ('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("//third_party/mojo/src/mojo/public/mojo_application.gni") 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni")
9
10 java_library_path = "$target_out_dir/java_library.dex.jar"
11
12 mojo_android_application("network") { 8 mojo_android_application("network") {
13 output_name = "network_service" 9 output_name = "network_service"
14 input_so = "$root_out_dir/lib.stripped/libnetwork_service.so"
15 input_dex_jar = java_library_path
16 }
17
18 shared_library("native_library") {
19 output_name = "network_service"
20 10
21 sources = [ 11 sources = [
22 "android_hooks.cc", 12 "android_hooks.cc",
23 ] 13 ]
24 14
25 deps = [ 15 deps = [
26 ":sources", 16 ":sources",
27 "//base", 17 "//base",
28 "//net", 18 "//net",
29 ] 19 ]
30 }
31 20
32 android_standalone_library("java_library") { 21 java_deps = [
33 dex_path = java_library_path
34
35 deps = [
36 "//net/android:net_java", 22 "//net/android:net_java",
37 ] 23 ]
38 } 24 }
39 } else { 25 } else {
40 mojo_native_application("network") { 26 mojo_native_application("network") {
41 output_name = "network_service" 27 output_name = "network_service"
42 28
43 deps = [ 29 deps = [
44 ":sources", 30 ":sources",
45 ] 31 ]
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "//mojo/application", 114 "//mojo/application",
129 "//mojo/application:test_support", 115 "//mojo/application:test_support",
130 "//mojo/services/network/public/cpp", 116 "//mojo/services/network/public/cpp",
131 "//mojo/services/network/public/interfaces", 117 "//mojo/services/network/public/interfaces",
132 "//net", 118 "//net",
133 "//net:test_support", 119 "//net:test_support",
134 "//testing/gtest", 120 "//testing/gtest",
135 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 121 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
136 ] 122 ]
137 } 123 }
OLDNEW
« no previous file with comments | « claude.py ('k') | tools/upload_service.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698