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

Unified Diff: third_party/mach_override/mach_override.gyp

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 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
« no previous file with comments | « third_party/lzma_sdk/lzma_sdk.gyp ('k') | third_party/mesa/mesa.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/mach_override/mach_override.gyp
diff --git a/third_party/mach_override/mach_override.gyp b/third_party/mach_override/mach_override.gyp
deleted file mode 100644
index 7206a0a955fd666b33c2cc13cc21f5b5e815480f..0000000000000000000000000000000000000000
--- a/third_party/mach_override/mach_override.gyp
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'targets': [
- ],
- 'conditions': [
- ['OS=="mac" or (OS=="ios" and "<(GENERATOR)"=="ninja")', {
- 'targets' : [
- {
- 'target_name' : 'libudis86',
- 'type': 'static_library',
- 'toolsets': ['host', 'target'],
- 'defines': [
- 'HAVE_ASSERT_H',
- 'HAVE_STRING_H',
- ],
- 'sources': [
- 'libudis86/decode.c',
- 'libudis86/decode.h',
- 'libudis86/extern.h',
- 'libudis86/input.c',
- 'libudis86/input.h',
- 'libudis86/itab.c',
- 'libudis86/itab.h',
- 'libudis86/syn-att.c',
- 'libudis86/syn-intel.c',
- 'libudis86/syn.c',
- 'libudis86/syn.h',
- 'libudis86/types.h',
- 'libudis86/udint.h',
- 'libudis86/udis86.c',
- 'udis86.h',
- ],
- 'sources!': [
- # The syn* files implement formatting for output, which is unused
- # by mach_override. Normally, it would be possible to let dead
- # code stripping get rid of them, but syn.c contains errors.
- # Rather than patching a file that's not relevant, disable it.
- 'libudis86/syn-att.c',
- 'libudis86/syn-intel.c',
- 'libudis86/syn.c',
- ],
- 'variables': {
- 'clang_warning_flags_unset': [
- # For UD_ASSERT(!"message");
- '-Wstring-conversion',
- ],
- 'clang_warning_flags': [
- # syn.c contains a switch with an assert(false) in a default:
- # block. In release builds, the function is missing a return.
- '-Wno-return-type',
- # Fires once in decode.c.
- '-Wno-sometimes-uninitialized',
- ],
- },
- },
- {
- 'target_name' : 'mach_override',
- 'type': 'static_library',
- 'toolsets': ['host', 'target'],
- 'dependencies': [
- 'libudis86',
- ],
- 'sources': [
- 'mach_override.c',
- 'mach_override.h',
- ],
- 'include_dirs': [
- '../..',
- ],
- },
- ],
- }],
- ],
-}
« no previous file with comments | « third_party/lzma_sdk/lzma_sdk.gyp ('k') | third_party/mesa/mesa.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698