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

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

Issue 910763002: Expose ability to download network service impl in SDK. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase 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 | « mojo/services/BUILD.gn ('k') | mojo/services/network/VERSION » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 group("network") {
6 deps = [
7 ":copy_prebuilt_network_service",
8 ":copy_prebuilt_network_service_apptests",
9 ]
10 }
11
12 copy("copy_prebuilt_network_service") {
13 filename = "network_service.mojo"
14 if (is_android) {
15 sources = [
16 "prebuilt/android-arm/$filename",
17 ]
18 } else {
19 assert(is_linux)
20 sources = [
21 "prebuilt/linux-x64/$filename",
22 ]
23 }
24 outputs = [
25 "$root_out_dir/$filename",
26 ]
27 }
28
29 copy("copy_prebuilt_network_service_apptests") {
30 filename = "network_service_apptests.mojo"
31 if (is_android) {
32 sources = [
33 "prebuilt/android-arm/$filename",
34 ]
35 } else {
36 assert(is_linux)
37 sources = [
38 "prebuilt/linux-x64/$filename",
39 ]
40 }
41 outputs = [
42 "$root_out_dir/$filename",
43 ]
44 }
OLDNEW
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/network/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698