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

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

Issue 7108031: this patch adds the manifest proxy server to sel_ldr and the manifest (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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"', {
29 'targets': [
30 {
31 'target_name': 'manifest_proxy64',
32 'type': 'static_library',
33 'variables': {
34 'target_base': 'manifest_proxy',
35 },
36 'configurations': {
37 'Common_Base': {
38 'msvs_target_platform': 'x64',
39 },
40 },
41 'dependencies': [
42 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64' ,
43 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc64',
44 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_i nterface64',
45 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64',
46 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_bas e64',
47 ],
48 },
49 ],
50 }],
51 ],
52 'targets': [
53 {
54 'target_name': 'manifest_proxy',
55 'type': 'static_library',
56 'variables': {
57 'target_base': 'manifest_proxy',
58 },
59 'dependencies': [
60 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
61 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc',
62 '<(DEPTH)/native_client/src/trusted/threading/threading.gyp:thread_inter face',
63 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
64 '<(DEPTH)/native_client/src/trusted/nacl_base/nacl_base.gyp:nacl_base',
65 ],
66 },
67 ],
68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698