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

Side by Side Diff: src/trusted/manifest_name_service_proxy/manifest_name_service_proxy.gyp

Issue 797843003: Remove src/trusted/manifest_name_service_proxy/ (old open_resource() impl) (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Remove test Created 5 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # -*- python -*-
2 # Copyright 2011 (c) The Native Client Authors. All rights reserved. Use
3 # of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5 {
6 'includes': [
7 '../../../build/common.gypi',
8 ],
9 'target_defaults': {
10 'variables':{
11 'target_base': 'none',
12 },
13 'target_conditions': [
14 ['target_base=="manifest_proxy"', {
15 'sources': [
16 'manifest_proxy.h',
17 'manifest_proxy.c',
18 ],
19 'xcode_settings': {
20 'WARNING_CFLAGS': [
21 '-Wno-missing-field-initializers'
22 ]
23 },
24 },
25 ]],
26 },
27 'conditions': [
28 ['OS=="win" and target_arch=="ia32"', {
29 'targets': [
30 {
31 'target_name': 'manifest_proxy64',
32 'type': 'static_library',
33 'variables': {
34 'target_base': 'manifest_proxy',
35 'win_target': 'x64',
36 },
37 'dependencies': [
38 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64' ,
39 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc64',
40 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i nterface64',
41 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64',
42 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_bas e64',
43 ],
44 },
45 ],
46 }],
47 ],
48 'targets': [
49 {
50 'target_name': 'manifest_proxy',
51 'type': 'static_library',
52 'variables': {
53 'target_base': 'manifest_proxy',
54 },
55 'dependencies': [
56 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
57 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc',
58 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter face',
59 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
60 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_base',
61 ],
62 },
63 ],
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698