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

Unified 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, 5 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: syzygy/runlaa/runlaa.gyp
diff --git a/syzygy/swapimport/swapimport.gyp b/syzygy/runlaa/runlaa.gyp
similarity index 75%
copy from syzygy/swapimport/swapimport.gyp
copy to syzygy/runlaa/runlaa.gyp
index 85d07fca6c1273125d27faf5bb6bd44eb1ab5f96..397927fafc6482ca85dd15b056432ed08f696671 100644
--- a/syzygy/swapimport/swapimport.gyp
+++ b/syzygy/runlaa/runlaa.gyp
@@ -1,4 +1,4 @@
-# Copyright 2014 Google Inc. All Rights Reserved.
+# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -18,46 +18,46 @@
},
'targets': [
{
- 'target_name': 'swapimport_lib',
+ 'target_name': 'runlaa_lib',
'type': 'static_library',
'sources': [
- 'swapimport_app.cc',
- 'swapimport_app.h',
+ 'runlaa_app.cc',
+ 'runlaa_app.h',
],
'dependencies': [
'<(src)/base/base.gyp:base',
'<(src)/syzygy/application/application.gyp:application_lib',
- '<(src)/syzygy/common/common.gyp:common_lib',
+ '<(src)/syzygy/core/core.gyp:core_lib',
'<(src)/syzygy/pe/pe.gyp:pe_lib',
],
},
{
- 'target_name': 'swapimport',
+ 'target_name': 'runlaa',
'type': 'executable',
'sources': [
- 'swapimport_main.cc',
- 'swapimport.rc',
+ 'runlaa_main.cc',
+ 'runlaa.rc',
],
'dependencies': [
- 'swapimport_lib',
+ 'runlaa_lib',
],
},
{
- 'target_name': 'swapimport_unittests',
+ 'target_name': 'runlaa_unittests',
'type': 'executable',
'sources': [
- 'swapimport_app_unittest.cc',
+ 'runlaa_app_unittest.cc',
'<(src)/syzygy/testing/run_all_unittests.cc',
],
'dependencies': [
- 'swapimport_lib',
+ 'runlaa_lib',
'<(src)/base/base.gyp:base',
'<(src)/base/base.gyp:test_support_base',
'<(src)/testing/gmock.gyp:gmock',
'<(src)/testing/gtest.gyp:gtest',
+ '<(src)/syzygy/common/common.gyp:common_unittest_utils',
'<(src)/syzygy/core/core.gyp:core_unittest_utils',
'<(src)/syzygy/pe/pe.gyp:pe_unittest_utils',
- '<(src)/syzygy/pe/pe.gyp:test_dll',
],
},
],

Powered by Google App Engine
This is Rietveld 408576698