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

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

Issue 263683002: Set file tokens for NaCl main nexe if available to enable validation caching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'includes': [ 7 'includes': [
8 'plugin.gypi', 8 'plugin.gypi',
9 ], 9 ],
10 'target_defaults': { 10 'target_defaults': {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 '-Wl,-exported_symbols_list <(DEPTH)/ppapi/native_client/src/trusted/p lugin/ppapi.def' 58 '-Wl,-exported_symbols_list <(DEPTH)/ppapi/native_client/src/trusted/p lugin/ppapi.def'
59 ], 59 ],
60 }, 60 },
61 'dependencies': [ 61 'dependencies': [
62 '<(DEPTH)/media/media.gyp:shared_memory_support', 62 '<(DEPTH)/media/media.gyp:shared_memory_support',
63 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio', 63 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio',
64 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc', 64 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc',
65 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', 65 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
66 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc', 66 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc',
67 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer', 67 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
68 '<(DEPTH)/native_client/src/trusted/desc_cacheability/desc_cacheability. gyp:desc_cacheability',
68 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac l_util', 69 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac l_util',
69 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gy p:platform_qual_lib', 70 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gy p:platform_qual_lib',
70 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc', 71 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc',
71 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:si mple_service', 72 '<(DEPTH)/native_client/src/trusted/simple_service/simple_service.gyp:si mple_service',
72 '<(DEPTH)/native_client/src/trusted/reverse_service/reverse_service.gyp: reverse_service', 73 '<(DEPTH)/native_client/src/trusted/reverse_service/reverse_service.gyp: reverse_service',
73 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref', 74 '<(DEPTH)/native_client/src/trusted/weak_ref/weak_ref.gyp:weak_ref',
74 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp', 75 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_cpp',
75 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp', 76 '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp',
76 ], 77 ],
77 'conditions': [ 78 'conditions': [
78 ['OS=="mac"', { 79 ['OS=="mac"', {
79 'mac_bundle': 1, 80 'mac_bundle': 1,
80 'product_name': 'ppGoogleNaClPluginChrome', 81 'product_name': 'ppGoogleNaClPluginChrome',
81 'product_extension': 'plugin', 82 'product_extension': 'plugin',
82 }], 83 }],
83 ['OS=="mac" and mac_breakpad==1', { 84 ['OS=="mac" and mac_breakpad==1', {
84 'variables': { 85 'variables': {
85 # A real .dSYM is needed for dump_syms to operate on. 86 # A real .dSYM is needed for dump_syms to operate on.
86 'mac_real_dsym': 1, 87 'mac_real_dsym': 1,
87 }, 88 },
88 }], 89 }],
89 ], 90 ],
90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
91 'msvs_disabled_warnings': [4267, ], 92 'msvs_disabled_warnings': [4267, ],
92 }, 93 },
93 ], 94 ],
94 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698