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

Unified Diff: chrome/browser/nacl_host/test/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: chrome/browser/nacl_host/test/BUILD.gn
diff --git a/chrome/browser/nacl_host/test/BUILD.gn b/chrome/browser/nacl_host/test/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..26c036afebeb9db77e53bbe7cd8dc66512fa28a8
--- /dev/null
+++ b/chrome/browser/nacl_host/test/BUILD.gn
@@ -0,0 +1,16 @@
+# Copyright (c) 2014 The Native Client Authors. All rights reserved.
+# 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 && (is_linux || is_win)) {
+ executable("mock_nacl_gdb") {
+ sources = [
+ "mock_nacl_gdb.cc",
+ ]
+ deps = [
+ "//base",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698