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

Unified Diff: src/trusted/debug_stub/build.scons

Issue 1867633002: Revert "Debug Stub: Added support for windows in ipc_transport." (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « src/public/chrome_main.h ('k') | src/trusted/debug_stub/transport_ipc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/debug_stub/build.scons
diff --git a/src/trusted/debug_stub/build.scons b/src/trusted/debug_stub/build.scons
index 3e7c33bd35ea85d64df048273f6be8e9000c62e1..a36bcd982c55f3d2ce29833d5caca4e2a5b3dcb6 100644
--- a/src/trusted/debug_stub/build.scons
+++ b/src/trusted/debug_stub/build.scons
@@ -48,13 +48,14 @@ gdb_rsp_test_exe = env.ComponentProgram(
node = env.CommandTest('gdb_rsp_unittest.out', command=[gdb_rsp_test_exe])
env.AddNodeToTestSuite(node, ['small_tests'], 'run_gdb_rsp_tests')
-gtest_env = env.MakeGTestEnv()
+if not env.Bit('windows'):
+ gtest_env = env.MakeGTestEnv()
-transport_ipc_test_exe = gtest_env.ComponentProgram(
- 'transport_ipc_unittest',
- 'transport_ipc_test.cc',
- EXTRA_LIBS=['debug_stub'])
+ transport_ipc_test_exe = gtest_env.ComponentProgram(
+ 'transport_ipc_unittest',
+ 'transport_ipc_test.cc',
+ EXTRA_LIBS=['debug_stub'])
-node = gtest_env.CommandTest('transport_ipc_unittest.out',
- command=[transport_ipc_test_exe])
-env.AddNodeToTestSuite(node, ['small_tests'], 'run_transport_ipc_test')
+ node = gtest_env.CommandTest('transport_ipc_unittest.out',
+ command=[transport_ipc_test_exe])
+ env.AddNodeToTestSuite(node, ['small_tests'], 'run_transport_ipc_test')
« no previous file with comments | « src/public/chrome_main.h ('k') | src/trusted/debug_stub/transport_ipc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698