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

Side by Side Diff: chrome/chrome_utility.gypi

Issue 1028543002: Turn the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Type converter arg change. Created 5 years, 8 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 # 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 '../crypto/crypto.gyp:crypto', 143 '../crypto/crypto.gyp:crypto',
144 ], 144 ],
145 'sources': [ 145 'sources': [
146 'utility/importer/nss_decryptor_system_nss.cc', 146 'utility/importer/nss_decryptor_system_nss.cc',
147 'utility/importer/nss_decryptor_system_nss.h', 147 'utility/importer/nss_decryptor_system_nss.h',
148 ], 148 ],
149 }], 149 }],
150 ['OS!="android"', { 150 ['OS!="android"', {
151 'dependencies': [ 151 'dependencies': [
152 '../net/net.gyp:net_utility_services', 152 '../net/net.gyp:net_utility_services',
153 '../services/image_decoder/image_decoder.gyp:services_image_decoder' ,
153 ], 154 ],
154 'sources': [ 155 'sources': [
155 '<@(chrome_utility_importer_sources)', 156 '<@(chrome_utility_importer_sources)',
156 ], 157 ],
157 }], 158 }],
158 ['OS=="android" and use_seccomp_bpf==1', { 159 ['OS=="android" and use_seccomp_bpf==1', {
159 'dependencies': [ 160 'dependencies': [
160 '../sandbox/sandbox.gyp:seccomp_bpf', 161 '../sandbox/sandbox.gyp:seccomp_bpf',
161 ], 162 ],
162 'defines': ['USE_SECCOMP_BPF'], 163 'defines': ['USE_SECCOMP_BPF'],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 }], 209 }],
209 ['safe_browsing==1', { 210 ['safe_browsing==1', {
210 'defines': [ 'FULL_SAFE_BROWSING' ], 211 'defines': [ 'FULL_SAFE_BROWSING' ],
211 }], 212 }],
212 ], 213 ],
213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 214 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
214 'msvs_disabled_warnings': [ 4267, ], 215 'msvs_disabled_warnings': [ 4267, ],
215 }, 216 },
216 ], 217 ],
217 } 218 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698