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

Side by Side Diff: content/content_renderer.gypi

Issue 246163006: Move history serialization from contet/public/renderer/ to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix braces Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/public/renderer/history_item_serialization.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 (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 'content_common_mojo_bindings', 7 'content_common_mojo_bindings',
8 '../gin/gin.gyp:gin', 8 '../gin/gin.gyp:gin',
9 '../jingle/jingle.gyp:jingle_glue', 9 '../jingle/jingle.gyp:jingle_glue',
10 '../media/media.gyp:media', 10 '../media/media.gyp:media',
(...skipping 25 matching lines...) Expand all
36 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems.cc. 36 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems.cc.
37 ], 37 ],
38 'sources': [ 38 'sources': [
39 'public/renderer/android_content_detection_prefixes.cc', 39 'public/renderer/android_content_detection_prefixes.cc',
40 'public/renderer/android_content_detection_prefixes.h', 40 'public/renderer/android_content_detection_prefixes.h',
41 'public/renderer/content_renderer_client.cc', 41 'public/renderer/content_renderer_client.cc',
42 'public/renderer/content_renderer_client.h', 42 'public/renderer/content_renderer_client.h',
43 'public/renderer/context_menu_client.h', 43 'public/renderer/context_menu_client.h',
44 'public/renderer/document_state.cc', 44 'public/renderer/document_state.cc',
45 'public/renderer/document_state.h', 45 'public/renderer/document_state.h',
46 'public/renderer/history_item_serialization.cc',
47 'public/renderer/history_item_serialization.h',
48 'public/renderer/key_system_info.cc', 46 'public/renderer/key_system_info.cc',
49 'public/renderer/key_system_info.h', 47 'public/renderer/key_system_info.h',
50 'public/renderer/navigation_state.cc', 48 'public/renderer/navigation_state.cc',
51 'public/renderer/navigation_state.h', 49 'public/renderer/navigation_state.h',
52 'public/renderer/pepper_plugin_instance.h', 50 'public/renderer/pepper_plugin_instance.h',
53 'public/renderer/renderer_ppapi_host.h', 51 'public/renderer/renderer_ppapi_host.h',
54 'public/renderer/render_frame.h', 52 'public/renderer/render_frame.h',
55 'public/renderer/render_frame_observer.cc', 53 'public/renderer/render_frame_observer.cc',
56 'public/renderer/render_frame_observer.h', 54 'public/renderer/render_frame_observer.h',
57 'public/renderer/render_frame_observer_tracker.h', 55 'public/renderer/render_frame_observer_tracker.h',
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 'renderer/gpu/mailbox_output_surface.cc', 160 'renderer/gpu/mailbox_output_surface.cc',
163 'renderer/gpu/mailbox_output_surface.h', 161 'renderer/gpu/mailbox_output_surface.h',
164 'renderer/gpu/render_widget_compositor.cc', 162 'renderer/gpu/render_widget_compositor.cc',
165 'renderer/gpu/render_widget_compositor.h', 163 'renderer/gpu/render_widget_compositor.h',
166 'renderer/gpu/stream_texture_host_android.cc', 164 'renderer/gpu/stream_texture_host_android.cc',
167 'renderer/gpu/stream_texture_host_android.h', 165 'renderer/gpu/stream_texture_host_android.h',
168 'renderer/history_controller.cc', 166 'renderer/history_controller.cc',
169 'renderer/history_controller.h', 167 'renderer/history_controller.h',
170 'renderer/history_entry.cc', 168 'renderer/history_entry.cc',
171 'renderer/history_entry.h', 169 'renderer/history_entry.h',
170 'renderer/history_serialization.cc',
171 'renderer/history_serialization.h',
172 'renderer/idle_user_detector.cc', 172 'renderer/idle_user_detector.cc',
173 'renderer/idle_user_detector.h', 173 'renderer/idle_user_detector.h',
174 'renderer/image_loading_helper.cc', 174 'renderer/image_loading_helper.cc',
175 'renderer/image_loading_helper.h', 175 'renderer/image_loading_helper.h',
176 'renderer/ime_event_guard.cc', 176 'renderer/ime_event_guard.cc',
177 'renderer/ime_event_guard.h', 177 'renderer/ime_event_guard.h',
178 'renderer/in_process_renderer_thread.cc', 178 'renderer/in_process_renderer_thread.cc',
179 'renderer/in_process_renderer_thread.h', 179 'renderer/in_process_renderer_thread.h',
180 'renderer/input/input_event_filter.cc', 180 'renderer/input/input_event_filter.cc',
181 'renderer/input/input_event_filter.h', 181 'renderer/input/input_event_filter.h',
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 }], 783 }],
784 ], 784 ],
785 'target_conditions': [ 785 'target_conditions': [
786 ['OS=="android"', { 786 ['OS=="android"', {
787 'sources/': [ 787 'sources/': [
788 ['include', '^renderer/render_view_linux\\.cc$'], 788 ['include', '^renderer/render_view_linux\\.cc$'],
789 ], 789 ],
790 }], 790 }],
791 ], 791 ],
792 } 792 }
OLDNEW
« no previous file with comments | « no previous file | content/public/renderer/history_item_serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698