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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 2064463002: Mojo interface/service for Leak Detector on remote process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update ProtobufToMojoConverterTest Created 4 years, 5 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/renderer/BUILD.gn » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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_renderer_sources': [ 7 'chrome_renderer_sources': [
8 'renderer/app_categorizer.h', 8 'renderer/app_categorizer.h',
9 'renderer/app_categorizer.cc', 9 'renderer/app_categorizer.cc',
10 'renderer/banners/app_banner_client.cc', 10 'renderer/banners/app_banner_client.cc',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 'renderer/spellchecker/spelling_engine.h', 227 'renderer/spellchecker/spelling_engine.h',
228 ], 228 ],
229 'chrome_renderer_printing_sources': [ 229 'chrome_renderer_printing_sources': [
230 'renderer/printing/chrome_print_web_view_helper_delegate.cc', 230 'renderer/printing/chrome_print_web_view_helper_delegate.cc',
231 'renderer/printing/chrome_print_web_view_helper_delegate.h', 231 'renderer/printing/chrome_print_web_view_helper_delegate.h',
232 ], 232 ],
233 'chrome_renderer_full_printing_sources': [ 233 'chrome_renderer_full_printing_sources': [
234 'renderer/pepper/chrome_pdf_print_client.cc', 234 'renderer/pepper/chrome_pdf_print_client.cc',
235 'renderer/pepper/chrome_pdf_print_client.h', 235 'renderer/pepper/chrome_pdf_print_client.h',
236 ], 236 ],
237 'chrome_renderer_leak_detector_sources': [
238 'renderer/leak_detector/leak_detector_remote_client.cc',
239 'renderer/leak_detector/leak_detector_remote_client.h',
240 ],
237 }, 241 },
238 'targets': [ 242 'targets': [
239 { 243 {
240 'target_name': 'renderer', 244 'target_name': 'renderer',
241 'type': 'static_library', 245 'type': 'static_library',
242 'variables': { 'enable_wexit_time_destructors': 1, }, 246 'variables': { 'enable_wexit_time_destructors': 1, },
243 'dependencies': [ 247 'dependencies': [
244 'common', 248 'common',
245 'common_mojo_bindings', 249 'common_mojo_bindings',
246 'chrome_features.gyp:chrome_common_features', 250 'chrome_features.gyp:chrome_common_features',
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 }], 395 }],
392 ['OS=="win"', { 396 ['OS=="win"', {
393 'dependencies': [ 397 'dependencies': [
394 '../components/components.gyp:dom_distiller_core', # Needed by chro me_content_renderer_client.cc. 398 '../components/components.gyp:dom_distiller_core', # Needed by chro me_content_renderer_client.cc.
395 '../components/components.gyp:startup_metric_utils_win', 399 '../components/components.gyp:startup_metric_utils_win',
396 ], 400 ],
397 'include_dirs': [ 401 'include_dirs': [
398 '<(DEPTH)/third_party/wtl/include', 402 '<(DEPTH)/third_party/wtl/include',
399 ], 403 ],
400 }], 404 }],
405 ['chromeos==1', {
406 'sources': [
407 '<@(chrome_renderer_leak_detector_sources)',
408 ],
409 'dependencies': [
410 '../components/components.gyp:metrics_leak_detector',
411 '../components/components.gyp:metrics_mojo_bindings',
412 ],
413 }],
401 ], 414 ],
402 }, 415 },
403 ], 416 ],
404 } 417 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698