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

Side by Side Diff: syzygy/runlaa/runlaa.gyp

Issue 1269553002: Create a utility for running executables in LAA mode. (Closed) Base URL: https://github.com/google/syzygy.git@master
Patch Set: 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 # Copyright 2014 Google Inc. All Rights Reserved. 1 # Copyright 2015 Google Inc. All Rights Reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and 12 # See the License for the specific language governing permissions and
13 # limitations under the License. 13 # limitations under the License.
14 14
15 { 15 {
16 'variables': { 16 'variables': {
17 'chromium_code': 1, 17 'chromium_code': 1,
18 }, 18 },
19 'targets': [ 19 'targets': [
20 { 20 {
21 'target_name': 'swapimport_lib', 21 'target_name': 'runlaa_lib',
22 'type': 'static_library', 22 'type': 'static_library',
23 'sources': [ 23 'sources': [
24 'swapimport_app.cc', 24 'runlaa_app.cc',
25 'swapimport_app.h', 25 'runlaa_app.h',
26 ], 26 ],
27 'dependencies': [ 27 'dependencies': [
28 '<(src)/base/base.gyp:base', 28 '<(src)/base/base.gyp:base',
29 '<(src)/syzygy/application/application.gyp:application_lib', 29 '<(src)/syzygy/application/application.gyp:application_lib',
30 '<(src)/syzygy/common/common.gyp:common_lib', 30 '<(src)/syzygy/core/core.gyp:core_lib',
31 '<(src)/syzygy/pe/pe.gyp:pe_lib', 31 '<(src)/syzygy/pe/pe.gyp:pe_lib',
32 ], 32 ],
33 }, 33 },
34 { 34 {
35 'target_name': 'swapimport', 35 'target_name': 'runlaa',
36 'type': 'executable', 36 'type': 'executable',
37 'sources': [ 37 'sources': [
38 'swapimport_main.cc', 38 'runlaa_main.cc',
39 'swapimport.rc', 39 'runlaa.rc',
40 ], 40 ],
41 'dependencies': [ 41 'dependencies': [
42 'swapimport_lib', 42 'runlaa_lib',
43 ], 43 ],
44 }, 44 },
45 { 45 {
46 'target_name': 'swapimport_unittests', 46 'target_name': 'runlaa_unittests',
47 'type': 'executable', 47 'type': 'executable',
48 'sources': [ 48 'sources': [
49 'swapimport_app_unittest.cc', 49 'runlaa_app_unittest.cc',
50 '<(src)/syzygy/testing/run_all_unittests.cc', 50 '<(src)/syzygy/testing/run_all_unittests.cc',
51 ], 51 ],
52 'dependencies': [ 52 'dependencies': [
53 'swapimport_lib', 53 'runlaa_lib',
54 '<(src)/base/base.gyp:base', 54 '<(src)/base/base.gyp:base',
55 '<(src)/base/base.gyp:test_support_base', 55 '<(src)/base/base.gyp:test_support_base',
56 '<(src)/testing/gmock.gyp:gmock', 56 '<(src)/testing/gmock.gyp:gmock',
57 '<(src)/testing/gtest.gyp:gtest', 57 '<(src)/testing/gtest.gyp:gtest',
58 '<(src)/syzygy/common/common.gyp:common_unittest_utils',
58 '<(src)/syzygy/core/core.gyp:core_unittest_utils', 59 '<(src)/syzygy/core/core.gyp:core_unittest_utils',
59 '<(src)/syzygy/pe/pe.gyp:pe_unittest_utils', 60 '<(src)/syzygy/pe/pe.gyp:pe_unittest_utils',
60 '<(src)/syzygy/pe/pe.gyp:test_dll',
61 ], 61 ],
62 }, 62 },
63 ], 63 ],
64 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698