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

Unified Diff: ppapi/native_client/src/untrusted/irt_stub/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: clean up for review 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/untrusted/irt_stub/BUILD.gn
diff --git a/ppapi/native_client/src/untrusted/irt_stub/BUILD.gn b/ppapi/native_client/src/untrusted/irt_stub/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..fd781870a7337ccff9a84bc7ef9a96f3b6eb4586
--- /dev/null
+++ b/ppapi/native_client/src/untrusted/irt_stub/BUILD.gn
@@ -0,0 +1,16 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
brettw 2015/02/05 00:20:36 2015
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/features.gni")
+
+if (enable_nacl && enable_nacl_untrusted) {
Nick Bray (chromium) 2015/02/05 23:21:46 Nit: technically not needed? If we're including _
Dirk Pranke 2015/02/05 23:52:19 This is probably better changed to an assert() the
Nick Bray (chromium) 2015/02/06 01:18:00 asserting is_nacl would be the cleanest approach,
+ static_library("ppapi_stub_lib") {
+ sources = [
+ "ppapi_plugin_main.c",
+ "ppapi_plugin_start.c",
+ "plugin_main_irt.c",
+ "thread_creator.c",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698