Index: src/trusted/plugin/plugin.gypi |
diff --git a/src/trusted/plugin/plugin.gypi b/src/trusted/plugin/plugin.gypi |
deleted file mode 100644 |
index 4048b18e4b47881c6cec0c6b1532154f5d4e0ac3..0000000000000000000000000000000000000000 |
--- a/src/trusted/plugin/plugin.gypi |
+++ /dev/null |
@@ -1,105 +0,0 @@ |
-# Copyright (c) 2011 The Native Client Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-{ |
- 'variables': { |
- 'common_sources': [ |
- 'array_ppapi.cc', |
- 'browser_interface.cc', |
- 'desc_based_handle.cc', |
- 'file_downloader.cc', |
- 'manifest.cc', |
- 'method_map.cc', |
- 'module_ppapi.cc', |
- 'nacl_subprocess.cc', |
- 'nexe_arch.cc', |
- 'plugin.cc', |
- 'pnacl_coordinator.cc', |
- 'pnacl_srpc_lib.cc', |
- 'scriptable_handle.cc', |
- 'service_runtime.cc', |
- 'srpc_client.cc', |
- 'string_encoding.cc', |
- 'utility.cc', |
- 'var_utils.cc', |
- ], |
- # Append the arch-specific ISA code to common_sources. |
- 'conditions': [ |
- # Note: this test assumes that if this is not an ARM build, then this is |
- # is an x86 build. This is because |target_arch| for x86 can be one of a |
- # number of values (x64, ia32, etc.). |
- ['target_arch=="arm"', { |
- 'common_sources': [ |
- 'arch_arm/sandbox_isa.cc', |
- ], |
- }, { # else: 'target_arch != "arm" |
- 'common_sources': [ |
- 'arch_x86/sandbox_isa.cc', |
- ], |
- }], |
- ], |
- }, |
- 'includes': [ |
- '../../../build/common.gypi', |
- ], |
- 'target_defaults': { |
- 'variables': { |
- 'target_platform': 'none', |
- }, |
- 'conditions': [ |
- ['OS=="linux"', { |
- 'defines': [ |
- 'XP_UNIX', |
- 'MOZ_X11', |
- ], |
- 'cflags': [ |
- '-Wno-long-long', |
- ], |
- 'ldflags': [ |
- # Catch unresolved symbols. |
- '-Wl,-z,defs', |
- ], |
- 'libraries': [ |
- '-ldl', |
- '-lX11', |
- '-lXt', |
- ], |
- }], |
- ['OS=="mac"', { |
- 'defines': [ |
- 'XP_MACOSX', |
- 'XP_UNIX', |
- 'TARGET_API_MAC_CARBON=1', |
- 'NO_X11', |
- 'USE_SYSTEM_CONSOLE', |
- ], |
- 'cflags': [ |
- '-Wno-long-long', |
- ], |
- 'link_settings': { |
- 'libraries': [ |
- '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
- ], |
- }, |
- }], |
- ['OS=="win"', { |
- 'defines': [ |
- 'XP_WIN', |
- 'WIN32', |
- '_WINDOWS' |
- ], |
- 'flags': [ |
- '-fPIC', |
- '-Wno-long-long', |
- ], |
- 'link_settings': { |
- 'libraries': [ |
- '-lgdi32.lib', |
- '-luser32.lib', |
- ], |
- }, |
- }], |
- ], |
- }, |
-} |