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

Side by Side Diff: content/content_renderer.gypi

Issue 801173002: Fix message routing for BrowserPlugin in iframe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More cleanup Created 6 years 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 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations', 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations',
9 '../cc/cc.gyp:cc', 9 '../cc/cc.gyp:cc',
10 '../cc/blink/cc_blink.gyp:cc_blink', 10 '../cc/blink/cc_blink.gyp:cc_blink',
(...skipping 29 matching lines...) Expand all
40 ], 40 ],
41 'include_dirs': [ 41 'include_dirs': [
42 '..', 42 '..',
43 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems.cc. 43 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems.cc.
44 ], 44 ],
45 'variables': { 45 'variables': {
46 'public_renderer_sources': [ 46 'public_renderer_sources': [
47 'public/renderer/android_content_detection_prefixes.cc', 47 'public/renderer/android_content_detection_prefixes.cc',
48 'public/renderer/android_content_detection_prefixes.h', 48 'public/renderer/android_content_detection_prefixes.h',
49 'public/renderer/browser_plugin_delegate.h', 49 'public/renderer/browser_plugin_delegate.h',
50 'public/renderer/browser_plugin_delegate.cc',
Charlie Reis 2014/12/17 00:06:44 nit: .cc before .h
Fady Samuel 2014/12/17 19:30:35 Done.
50 'public/renderer/content_renderer_client.cc', 51 'public/renderer/content_renderer_client.cc',
51 'public/renderer/content_renderer_client.h', 52 'public/renderer/content_renderer_client.h',
52 'public/renderer/context_menu_client.h', 53 'public/renderer/context_menu_client.h',
53 'public/renderer/document_state.cc', 54 'public/renderer/document_state.cc',
54 'public/renderer/document_state.h', 55 'public/renderer/document_state.h',
55 'public/renderer/navigation_state.cc', 56 'public/renderer/navigation_state.cc',
56 'public/renderer/navigation_state.h', 57 'public/renderer/navigation_state.h',
57 'public/renderer/pepper_plugin_instance.h', 58 'public/renderer/pepper_plugin_instance.h',
58 'public/renderer/platform_event_observer.h', 59 'public/renderer/platform_event_observer.h',
59 'public/renderer/renderer_ppapi_host.h', 60 'public/renderer/renderer_ppapi_host.h',
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 }], 835 }],
835 ], 836 ],
836 'target_conditions': [ 837 'target_conditions': [
837 ['OS=="android"', { 838 ['OS=="android"', {
838 'sources/': [ 839 'sources/': [
839 ['include', '^renderer/render_view_linux\\.cc$'], 840 ['include', '^renderer/render_view_linux\\.cc$'],
840 ], 841 ],
841 }], 842 }],
842 ], 843 ],
843 } 844 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698