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

Unified Diff: src/trusted/validator/validator.gyp

Issue 10134056: Refactor the process of choosing validators. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: tweaks for win64 Created 8 years, 6 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/validator.gyp
diff --git a/src/trusted/validator/validator.gyp b/src/trusted/validator/validator.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..74f3f695936495fd60b413317a209205dd4d2c75
--- /dev/null
+++ b/src/trusted/validator/validator.gyp
@@ -0,0 +1,35 @@
+# -*- gyp -*-
+# 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.
+
+{
+ 'includes': [
+ '../../../build/common.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'validators',
+ 'type': 'static_library',
+ 'sources' : [
+ 'validator_init.c',
+ ],
+ },
+ ],
+ 'conditions': [
+ ['OS=="win"', {
+ 'targets': [
+ {
+ 'target_name': 'validators64',
+ 'type': 'static_library',
+ 'sources' : [
+ 'validator_init.c',
+ ],
+ 'variables': {
+ 'win_target': 'x64',
+ },
+ },
+ ],
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698