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

Unified Diff: ppapi/native_client/src/trusted/plugin/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/ more review feedback 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/trusted/plugin/BUILD.gn
diff --git a/ppapi/native_client/src/trusted/plugin/BUILD.gn b/ppapi/native_client/src/trusted/plugin/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..7e6fc3377a152a2bd87c45c30b6c4ec8f8c58fba
--- /dev/null
+++ b/ppapi/native_client/src/trusted/plugin/BUILD.gn
@@ -0,0 +1,43 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("nacl_trusted_plugin") {
jvoung (off chromium) 2015/02/26 00:01:44 driveby -- I think the files moved to components/n
Dirk Pranke 2015/02/26 00:21:29 You're right! It looks like this whole file is no
+ sources = [
+ "module_ppapi.cc",
+ "nacl_subprocess.cc",
+ "plugin.cc",
+ "pnacl_coordinator.cc",
+ "pnacl_resources.cc",
+ "pnacl_translate_thread.cc",
+ "ppapi_entrypoints.cc",
+ "sel_ldr_launcher_chrome.cc",
+ "service_runtime.cc",
+ "srpc_client.cc",
+ "srpc_params.cc",
+ "temporary_file.cc",
+ "utility.cc",
+ ]
+
+ deps = [
+ "//media:shared_memory_support",
+ "//native_client/src/shared/gio",
+ "//native_client/src/shared/imc",
+ "//native_client/src/shared/platform",
+ "//native_client/src/trusted/desc:nrd_xfer",
+ "//native_client/src/trusted/nonnacl_util:sel_ldr_launcher_base",
+ "//native_client/src/trusted/platform_qualify:platform_qual_lib",
+ "//native_client/src/trusted/simple_service",
+ "//native_client/src/trusted/weak_ref",
+ "//ppapi:ppapi_cpp_objects",
+ "//ppapi:ppapi_internal_module",
+ ]
+
+ if (is_linux) {
+ cflags = [ "-Wno-long-long" ]
+
+ ldflags = [ "-Wl,-z,defs" ]
+
+ libs = [ "dl" ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698