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

Unified Diff: src/trusted/plugin/plugin.gypi

Issue 7799028: Remove src/trusted/plugin (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix gyp file for necessary -I Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/plugin/plugin.gyp ('k') | src/trusted/plugin/plugin_error.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
- ],
- },
- }],
- ],
- },
-}
« no previous file with comments | « src/trusted/plugin/plugin.gyp ('k') | src/trusted/plugin/plugin_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698