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

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

Issue 10134056: Refactor the process of choosing validators. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: gyp, extern, formatting Created 8 years, 7 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: src/trusted/validator/build.scons
diff --git a/src/trusted/validator/build.scons b/src/trusted/validator/build.scons
index 5da720bfce63a18c1b885c32d94edda34fe6655c..13039cac57c4a4fbd77c83bf2bb5bf51af03149a 100644
--- a/src/trusted/validator/build.scons
+++ b/src/trusted/validator/build.scons
@@ -1,5 +1,5 @@
# -*- python -*-
-# Copyright (c) 2011 The Native Client Authors. All rights reserved.
+# Copyright (c) 2012 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.
@@ -16,13 +16,14 @@ lib_env.Append(CPPPATH=['${TARGET_ROOT}'])
lib_env.ComponentLibrary(lib_env.NaClTargetArchSuffix('ncfileutils'),
['ncfileutil.c'])
+lib_env.ComponentLibrary('validators', ['validator_init.c'])
if env.Bit('target_x86'):
# TODO(ncbray) support ARM. This will require making validation caching safe
# for ARM and embedding ARM binary chunks in the test that can trigger various
# validation scenarios.
gtest_env = env.MakeGTestEnv()
- validator_libs = [gtest_env.NaClTargetArchSuffix('ncvalidate')]
+ validator_libs = ['validators', gtest_env.NaClTargetArchSuffix('ncvalidate')]
validation_cache_test_exe = gtest_env.ComponentProgram(
'validation_cache_test',

Powered by Google App Engine
This is Rietveld 408576698