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

Side by Side Diff: content/content_renderer.gypi

Issue 140763008: Add a UMA stat to track if the Browser blacklist is Set on the Renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 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
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 'dependencies': [ 6 'dependencies': [
7 '../gin/gin.gyp:gin', 7 '../gin/gin.gyp:gin',
8 '../jingle/jingle.gyp:jingle_glue', 8 '../jingle/jingle.gyp:jingle_glue',
9 '../media/media.gyp:media', 9 '../media/media.gyp:media',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 ['toolkit_uses_gtk == 1', { 540 ['toolkit_uses_gtk == 1', {
541 'dependencies': [ 541 'dependencies': [
542 '../build/linux/system.gyp:gtk', 542 '../build/linux/system.gyp:gtk',
543 ], 543 ],
544 }], 544 }],
545 ['OS=="mac"', { 545 ['OS=="mac"', {
546 'sources!': [ 546 'sources!': [
547 'common/process_watcher_posix.cc', 547 'common/process_watcher_posix.cc',
548 ], 548 ],
549 }], 549 }],
550 ['OS=="win"', {
551 'dependencies': [
552 '../chrome_elf/chrome_elf.gyp:blacklist',
553 ],
554 }],
550 ['OS=="win" and win_use_allocator_shim==1', { 555 ['OS=="win" and win_use_allocator_shim==1', {
551 'dependencies': [ 556 'dependencies': [
552 '../base/allocator/allocator.gyp:allocator', 557 '../base/allocator/allocator.gyp:allocator',
553 ], 558 ],
554 }], 559 }],
555 ['OS=="android"', { 560 ['OS=="android"', {
556 'sources!': [ 561 'sources!': [
557 'renderer/accessibility/renderer_accessibility_focus_only.cc' 562 'renderer/accessibility/renderer_accessibility_focus_only.cc'
558 'renderer/media/audio_decoder.cc', 563 'renderer/media/audio_decoder.cc',
559 'renderer/media/filter_helpers.cc', 564 'renderer/media/filter_helpers.cc',
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 }], 764 }],
760 ], 765 ],
761 'target_conditions': [ 766 'target_conditions': [
762 ['OS=="android"', { 767 ['OS=="android"', {
763 'sources/': [ 768 'sources/': [
764 ['include', '^renderer/render_view_linux\\.cc$'], 769 ['include', '^renderer/render_view_linux\\.cc$'],
765 ], 770 ],
766 }], 771 }],
767 ], 772 ],
768 } 773 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698