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 assert(is_nacl, | |
| 6 "These targets must only be built using the untrusted NaCl toolchains.") | |
| 7 | |
| 8 static_library("aot") { | |
|
brettw
2015/02/25 22:22:25
source_set (also twice below)
Dirk Pranke
2015/02/25 23:23:40
Done.
| |
| 9 sources = [ | |
| 10 "irt_shim_ppapi.c", | |
| 11 "pnacl_shim.c", | |
| 12 "shim_entry.c", | |
| 13 "shim_ppapi.c", | |
| 14 ] | |
| 15 } | |
| 16 | |
| 17 static_library("browser") { | |
| 18 sources = [ | |
| 19 "shim_entry.c", | |
| 20 "shim_ppapi.c", | |
| 21 ] | |
| 22 } | |
| 23 | |
| 24 static_library("irt") { | |
| 25 sources = [ | |
| 26 "irt_shim_ppapi.c", | |
| 27 "pnacl_shim.c", | |
| 28 ] | |
| 29 } | |
| OLD | NEW |