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

Side by Side Diff: syzygy/agent/common/common.gyp

Issue 2194383007: Port some more code to x64 (Closed) Base URL: git@github.com:google/syzygy.git@master
Patch Set: Created 4 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 2012 Google Inc. All Rights Reserved. 1 # Copyright 2012 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,
(...skipping 17 matching lines...) Expand all
28 'dll_notifications.cc', 28 'dll_notifications.cc',
29 'dll_notifications.h', 29 'dll_notifications.h',
30 'entry_frame.h', 30 'entry_frame.h',
31 'hot_patcher.cc', 31 'hot_patcher.cc',
32 'hot_patcher.h', 32 'hot_patcher.h',
33 'process_utils.cc', 33 'process_utils.cc',
34 'process_utils.h', 34 'process_utils.h',
35 'scoped_last_error_keeper.h', 35 'scoped_last_error_keeper.h',
36 'stack_capture.cc', 36 'stack_capture.cc',
37 'stack_capture.h', 37 'stack_capture.h',
38 'stack_walker_x86.cc',
39 'stack_walker_x86.h',
40 'thread_state.cc', 38 'thread_state.cc',
41 'thread_state.h', 39 'thread_state.h',
42 ], 40 ],
43 'dependencies': [ 41 'dependencies': [
44 '<(src)/syzygy/common/common.gyp:common_lib', 42 '<(src)/syzygy/common/common.gyp:common_lib',
45 '<(src)/syzygy/common/rpc/rpc.gyp:common_rpc_lib', 43 '<(src)/syzygy/common/rpc/rpc.gyp:common_rpc_lib',
46 '<(src)/syzygy/pe/pe.gyp:test_dll', 44 '<(src)/syzygy/pe/pe.gyp:test_dll',
47 '<(src)/syzygy/trace/client/client.gyp:rpc_client_lib', 45 '<(src)/syzygy/trace/client/client.gyp:rpc_client_lib',
48 '<(src)/syzygy/trace/rpc/rpc.gyp:call_trace_rpc_lib', 46 '<(src)/syzygy/trace/rpc/rpc.gyp:call_trace_rpc_lib',
49 ], 47 ],
48 'conditions': [
49 ['target_arch == "x64"', {
50 'sources': [
51 'stack_walker.cc',
52 'stack_walker.h',
53 ]
54 }, {
55 'sources': [
56 'stack_walker_x86.cc',
57 'stack_walker_x86.h',
58 ]
59 }]
60 ],
50 }, 61 },
51 { 62 {
52 'target_name': 'agent_common_unittests', 63 'target_name': 'agent_common_unittests',
53 'type': 'executable', 64 'type': 'executable',
54 'sources': [ 65 'sources': [
55 'dlist_unittest.cc', 66 'dlist_unittest.cc',
56 'dll_notifications_unittest.cc', 67 'dll_notifications_unittest.cc',
57 'hot_patcher_unittest.cc', 68 'hot_patcher_unittest.cc',
58 'process_utils_unittest.cc', 69 'process_utils_unittest.cc',
59 'stack_capture_unittest.cc', 70 'stack_capture_unittest.cc',
(...skipping 11 matching lines...) Expand all
71 '<(src)/syzygy/trace/service/service.gyp:call_trace_service_exe', 82 '<(src)/syzygy/trace/service/service.gyp:call_trace_service_exe',
72 '<(src)/testing/gtest.gyp:gtest', 83 '<(src)/testing/gtest.gyp:gtest',
73 '<(src)/testing/gmock.gyp:gmock', 84 '<(src)/testing/gmock.gyp:gmock',
74 ], 85 ],
75 'libraries': [ 86 'libraries': [
76 'imagehlp.lib', 87 'imagehlp.lib',
77 ], 88 ],
78 }, 89 },
79 ], 90 ],
80 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698