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

Side by Side Diff: src/trusted/validator_arm/validator_arm.gyp

Issue 11864002: Move CPU features into its own static library. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Address bsy's comments by not building x86 target when host isn't x86. This is how things are curre… Created 7 years, 11 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
« no previous file with comments | « src/trusted/validator_arm/validator.h ('k') | src/trusted/validator_mips/build.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2010, Google Inc. 1 # Copyright 2010, Google Inc.
2 # Copyright 2009 The Native Client Authors. All rights reserved. 2 # Copyright 2009 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can 3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file. 4 # be found in the LICENSE file.
5 5
6 { 6 {
7 # ---------------------------------------------------------------------- 7 # ----------------------------------------------------------------------
8 # Default settings 8 # Default settings
9 # ---------------------------------------------------------------------- 9 # ----------------------------------------------------------------------
10 10
(...skipping 25 matching lines...) Expand all
36 # ---------------------------------------------------------------------- 36 # ----------------------------------------------------------------------
37 'targets': [ 37 'targets': [
38 # ---------------------------------------------------------------------- 38 # ----------------------------------------------------------------------
39 { 39 {
40 'target_name': 'arm_validator_core', 40 'target_name': 'arm_validator_core',
41 'type': 'static_library', 41 'type': 'static_library',
42 'sources': [ 42 'sources': [
43 'address_set.cc', 43 'address_set.cc',
44 'actual_classes.cc', 44 'actual_classes.cc',
45 'baseline_classes.cc', 45 'baseline_classes.cc',
46 'cpuid_arm.c',
47 'inst_classes.cc', 46 'inst_classes.cc',
48 'model.cc', 47 'model.cc',
49 'validator.cc', 48 'validator.cc',
50 'gen/arm32_decode.cc', 49 'gen/arm32_decode.cc',
51 'gen/arm32_decode_actuals.cc' 50 'gen/arm32_decode_actuals.cc'
52 ], 51 ],
52 'dependencies': [
53 '<(DEPTH)/native_client/src/trusted/cpu_features/cpu_features.gyp:cpu_fe atures'
54 ],
53 }, 55 },
54 # ---------------------------------------------------------------------- 56 # ----------------------------------------------------------------------
55 { 57 {
56 'target_name': 'ncvalidate_arm_v2', 58 'target_name': 'ncvalidate_arm_v2',
57 'type': 'static_library', 59 'type': 'static_library',
58 'sources': [ 'ncvalidate.cc' ], 60 'sources': [ 'ncvalidate.cc' ],
59 'dependencies': [ 61 'dependencies': [
60 'arm_validator_core' 62 'arm_validator_core'
61 ], 63 ],
62 }, 64 },
63 # ---------------------------------------------------------------------- 65 # ----------------------------------------------------------------------
64 { 66 {
65 'target_name': 'arm_validator_reporters', 67 'target_name': 'arm_validator_reporters',
66 'type': 'static_library', 68 'type': 'static_library',
67 'sources': [ 'problem_reporter.cc' ], 69 'sources': [ 'problem_reporter.cc' ],
68 }, 70 },
69 ], 71 ],
70 } 72 }
OLDNEW
« no previous file with comments | « src/trusted/validator_arm/validator.h ('k') | src/trusted/validator_mips/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698