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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # -*- gyp -*-
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
4 # found in the LICENSE file.
5
6 {
7 'includes': [
8 '../../../build/common.gypi',
9 ],
10 'targets': [
11 {
12 'target_name': 'validators',
13 'type': 'static_library',
14 'sources' : [
15 'validator_init.c',
16 ],
17 },
18 ],
19 'conditions': [
20 ['OS=="win"', {
21 'targets': [
22 {
23 'target_name': 'validators64',
24 'type': 'static_library',
25 'sources' : [
26 'validator_init.c',
27 ],
28 'variables': {
29 'win_target': 'x64',
30 },
31 },
32 ],
33 }],
34 ],
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698