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

Side by Side Diff: ppapi/native_client/src/trusted/plugin/plugin.gypi

Issue 876483002: NaCl: Move src/trusted/plugin/ to components/nacl/renderer/plugin/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update #include guards Created 5 years, 10 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
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1, # Use higher warning level.
8 'common_sources': [
9 'module_ppapi.cc',
10 'nacl_subprocess.cc',
11 'plugin.cc',
12 'pnacl_coordinator.cc',
13 'pnacl_resources.cc',
14 'pnacl_translate_thread.cc',
15 'ppapi_entrypoints.cc',
16 'sel_ldr_launcher_chrome.cc',
17 'service_runtime.cc',
18 'srpc_client.cc',
19 'srpc_params.cc',
20 'temporary_file.cc',
21 'utility.cc',
22 ],
23 },
24 'includes': [
25 '../../../../../native_client/build/common.gypi',
26 ],
27 'target_defaults': {
28 'variables': {
29 'target_platform': 'none',
30 },
31 'conditions': [
32 ['OS=="linux"', {
33 'cflags': [
34 '-Wno-long-long',
35 ],
36 'cflags!': [
37 '-Wno-unused-parameter', # be a bit stricter to match NaCl flags.
38 ],
39 'conditions': [
40 ['asan!=1 and msan!=1 and ubsan_vptr!=1', {
41 'ldflags': [
42 # Catch unresolved symbols.
43 '-Wl,-z,defs',
44 ],
45 }],
46 ],
47 'libraries': [
48 '-ldl',
49 ],
50 }],
51 ['OS=="mac"', {
52 'cflags': [
53 '-Wno-long-long',
54 ],
55 'cflags!': [
56 '-Wno-unused-parameter', # be a bit stricter to match NaCl flags.
57 ],
58 'link_settings': {
59 'libraries': [
60 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
61 ],
62 },
63 }],
64 ['OS=="win"', {
65 'defines': [
66 'WIN32',
67 '_WINDOWS'
68 ],
69 'flags': [
70 '-fPIC',
71 '-Wno-long-long',
72 ],
73 'link_settings': {
74 'libraries': [
75 '-lgdi32.lib',
76 '-luser32.lib',
77 ],
78 },
79 }],
80 ],
81 },
82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698