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

Side by Side Diff: chrome/chrome_utility.gypi

Issue 1161053004: Move the SeccompSupportDetector to be in-process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 5 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/chrome_utility_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chrome_utility_sources': [ 7 'chrome_utility_sources': [
8 'utility/chrome_content_utility_client.cc', 8 'utility/chrome_content_utility_client.cc',
9 'utility/chrome_content_utility_client.h', 9 'utility/chrome_content_utility_client.h',
10 'utility/chrome_content_utility_ipc_whitelist.cc', 10 'utility/chrome_content_utility_ipc_whitelist.cc',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 }], 147 }],
148 ['use_nss_certs==1', { 148 ['use_nss_certs==1', {
149 'dependencies': [ 149 'dependencies': [
150 '../crypto/crypto.gyp:crypto', 150 '../crypto/crypto.gyp:crypto',
151 ], 151 ],
152 'sources': [ 152 'sources': [
153 'utility/importer/nss_decryptor_system_nss.cc', 153 'utility/importer/nss_decryptor_system_nss.cc',
154 'utility/importer/nss_decryptor_system_nss.h', 154 'utility/importer/nss_decryptor_system_nss.h',
155 ], 155 ],
156 }], 156 }],
157 ['OS=="android" and use_seccomp_bpf==1', {
158 'dependencies': [
159 '../sandbox/sandbox.gyp:seccomp_bpf',
160 ],
161 'defines': ['USE_SECCOMP_BPF'],
162 }],
163 ['enable_extensions==1', { 157 ['enable_extensions==1', {
164 'dependencies': [ 158 'dependencies': [
165 '../extensions/extensions.gyp:extensions_utility', 159 '../extensions/extensions.gyp:extensions_utility',
166 '../third_party/libexif/libexif.gyp:libexif', 160 '../third_party/libexif/libexif.gyp:libexif',
167 'common/extensions/api/api.gyp:chrome_api', 161 'common/extensions/api/api.gyp:chrome_api',
168 ], 162 ],
169 'export_dependent_settings': [ 163 'export_dependent_settings': [
170 'common/extensions/api/api.gyp:chrome_api', 164 'common/extensions/api/api.gyp:chrome_api',
171 ], 165 ],
172 'sources': [ 166 'sources': [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 'utility/local_discovery/service_discovery_message_handler.cc', 198 'utility/local_discovery/service_discovery_message_handler.cc',
205 'utility/local_discovery/service_discovery_message_handler.h', 199 'utility/local_discovery/service_discovery_message_handler.h',
206 ] 200 ]
207 }], 201 }],
208 ], 202 ],
209 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 203 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
210 'msvs_disabled_warnings': [ 4267, ], 204 'msvs_disabled_warnings': [ 4267, ],
211 }, 205 },
212 ], 206 ],
213 } 207 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/chrome_utility_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698