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

Side by Side Diff: ppapi/native_client/src/untrusted/pnacl_irt_shim/BUILD.gn

Issue 877553008: Land prep work to enable NaCl in the Linux x64 GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update w/ review feedback Created 5 years, 9 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698