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

Unified Diff: third_party/capstone/capstone.gyp

Issue 2540863005: Add DEPS and minimal build configuration for Capstone disassembler. (Closed)
Patch Set: Merge ToT, address Seb's comment. Created 4 years 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
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/capstone/capstone.gyp
diff --git a/third_party/capstone/capstone.gyp b/third_party/capstone/capstone.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..e96f33321e178ccc574f07c8b38602ab4e731b21
--- /dev/null
+++ b/third_party/capstone/capstone.gyp
@@ -0,0 +1,63 @@
+# Copyright 2016 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.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'capstone',
+ 'type': 'static_library',
+ 'sources': [
+ "files/arch/X86/X86ATTInstPrinter.c",
+ "files/arch/X86/X86BaseInfo.h",
+ "files/arch/X86/X86Disassembler.c",
+ "files/arch/X86/X86Disassembler.h",
+ "files/arch/X86/X86DisassemblerDecoder.c",
+ "files/arch/X86/X86DisassemblerDecoder.h",
+ "files/arch/X86/X86DisassemblerDecoderCommon.h",
+ "files/arch/X86/X86InstPrinter.h",
+ "files/arch/X86/X86IntelInstPrinter.c",
+ "files/arch/X86/X86Mapping.c",
+ "files/arch/X86/X86Mapping.h",
+ "files/arch/X86/X86Module.c",
+ "files/cs.c",
+ "files/cs_priv.h",
+ "files/include/capstone.h",
+ "files/include/platform.h",
+ "files/include/x86.h",
+ "files/MCInst.c",
+ "files/MCInst.h",
+ "files/MCInstrDesc.c",
+ "files/MCInstrDesc.h",
+ "files/MCRegisterInfo.c",
+ "files/MCRegisterInfo.h",
+ "files/SStream.c",
+ "files/SStream.h",
+ "files/utils.c",
+ "files/utils.h",
+ ],
+ 'defines': [
+ "CAPSTONE_HAS_X86",
+ "CAPSTONE_USE_SYS_DYN_MEM",
+ ],
+ 'include_dirs': [
+ 'files/include',
+ ],
+ 'all_dependent_settings': {
+ 'include_dirs': [
+ 'files/include',
+ ],
+ },
+ },
+ ],
+}
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698