Chromium Code Reviews| 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 assert(is_linux) | |
| 13 sources = [ | |
| 14 "prebuilt/linux-x64/$filename", | |
| 15 ] | |
| 16 } | |
| 17 outputs = [ | |
| 18 "$root_out_dir/$filename", | |
| 19 ] | |
| 20 } | |
| OLD | NEW |