OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 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 copy("copy_prebuilt_network_service") { | |
6 filename = "network_service.mojo" | |
7 if (is_android) { | |
8 sources = [ | |
9 "prebuilt/android-arm/$filename", | |
10 ] | |
11 } else { | |
12 sources = [ | |
13 "prebuilt/linux-x64/$filename", | |
jamesr
2015/01/23 23:15:00
can we assert(is_linux) here so if someone tries t
ppi
2015/01/23 23:24:35
Done.
| |
14 ] | |
15 } | |
16 outputs = [ | |
17 "$root_out_dir/$filename", | |
18 ] | |
19 } | |
OLD | NEW |