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

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

Issue 2841863003: Improve the decoding of the VEX encoded instructions. (Closed)
Patch Set: nit Created 3 years, 7 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
« no previous file with comments | « no previous file | syzygy/core/disassembler_util.cc » ('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 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'type': 'executable', 76 'type': 'executable',
77 'includes': ['../build/masm.gypi'], 77 'includes': ['../build/masm.gypi'],
78 'sources': [ 78 'sources': [
79 'address_unittest.cc', 79 'address_unittest.cc',
80 'address_filter_unittest.cc', 80 'address_filter_unittest.cc',
81 'address_space_unittest.cc', 81 'address_space_unittest.cc',
82 'address_range_unittest.cc', 82 'address_range_unittest.cc',
83 'disassembler_test_code.asm', 83 'disassembler_test_code.asm',
84 'disassembler_unittest.cc', 84 'disassembler_unittest.cc',
85 'disassembler_util_unittest.cc', 85 'disassembler_util_unittest.cc',
86 'disassembler_util_unittest_vex_utils.cc',
87 'disassembler_util_unittest_vex_utils.h',
86 'file_util_unittest.cc', 88 'file_util_unittest.cc',
87 'json_file_writer_unittest.cc', 89 'json_file_writer_unittest.cc',
88 'section_offset_address_unittest.cc', 90 'section_offset_address_unittest.cc',
89 'serialization_unittest.cc', 91 'serialization_unittest.cc',
90 'string_table_unittest.cc', 92 'string_table_unittest.cc',
91 'unittest_util_unittest.cc', 93 'unittest_util_unittest.cc',
92 'zstream_unittest.cc', 94 'zstream_unittest.cc',
93 '<(src)/syzygy/testing/run_all_unittests.cc', 95 '<(src)/syzygy/testing/run_all_unittests.cc',
94 ], 96 ],
95 'dependencies': [ 97 'dependencies': [
96 'core_lib', 98 'core_lib',
97 'core_unittest_utils', 99 'core_unittest_utils',
98 '<(src)/base/base.gyp:base', 100 '<(src)/base/base.gyp:base',
99 '<(src)/base/base.gyp:test_support_base', 101 '<(src)/base/base.gyp:test_support_base',
100 '<(src)/syzygy/assm/assm.gyp:assm_unittest_utils', 102 '<(src)/syzygy/assm/assm.gyp:assm_unittest_utils',
101 '<(src)/testing/gmock.gyp:gmock', 103 '<(src)/testing/gmock.gyp:gmock',
102 '<(src)/testing/gtest.gyp:gtest', 104 '<(src)/testing/gtest.gyp:gtest',
103 '<(src)/third_party/distorm/distorm.gyp:distorm', 105 '<(src)/third_party/distorm/distorm.gyp:distorm',
104 '<(src)/third_party/zlib/zlib.gyp:zlib', 106 '<(src)/third_party/zlib/zlib.gyp:zlib',
105 ], 107 ],
106 }, 108 },
107 ], 109 ],
108 } 110 }
OLDNEW
« no previous file with comments | « no previous file | syzygy/core/disassembler_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698