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

Side by Side Diff: src/trusted/validator/build.scons

Issue 1234393005: A mechanism to identify/forbid/"rewrite" non-temporal instructions (and other) (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fixing nits Created 5 years, 4 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
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 6
7 import os 7 import os
8 import sys 8 import sys
9 Import('env') 9 Import('env')
10 10
(...skipping 29 matching lines...) Expand all
40 'validator_debug_stub_test', 40 'validator_debug_stub_test',
41 ['validator_debug_stub_test.cc'], 41 ['validator_debug_stub_test.cc'],
42 EXTRA_LIBS=['validators', 'nrd_xfer']) 42 EXTRA_LIBS=['validators', 'nrd_xfer'])
43 43
44 node = gtest_env.CommandTest( 44 node = gtest_env.CommandTest(
45 'validator_debug_stub_test.out', 45 'validator_debug_stub_test.out',
46 command=[validator_debug_stub_test_exe]) 46 command=[validator_debug_stub_test_exe])
47 47
48 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'], 48 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
49 'run_validator_debug_stub_test') 49 'run_validator_debug_stub_test')
50
51 if env.Bit('build_x86_64'):
52 gtest_env = env.MakeGTestEnv()
53
54 validation_disable_nontemporals_test_exe = gtest_env.ComponentProgram(
55 'validation_disable_nontemporals_test',
56 ['validation_disable_nontemporals_test.cc'],
57 EXTRA_LIBS=['validators', 'nrd_xfer'])
58
59 node = gtest_env.CommandTest(
60 'validation_disable_nontemporals_test.out',
61 command=[validation_disable_nontemporals_test_exe])
62
63 env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
64 'run_disable_nontemporals_test')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698