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

Side by Side Diff: content/content_browser.gypi

Issue 6713082: Move WebUIFactory to chrome/browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: synced Created 9 years, 9 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 | « content/browser/webui/web_ui_factory.cc ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_browser', 8 'target_name': 'content_browser',
9 'type': '<(library)', 9 'type': '<(library)',
10 'dependencies': [ 10 'dependencies': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'browser/certificate_manager_model.cc', 45 'browser/certificate_manager_model.cc',
46 'browser/certificate_manager_model.h', 46 'browser/certificate_manager_model.h',
47 'browser/certificate_viewer.cc', 47 'browser/certificate_viewer.cc',
48 'browser/certificate_viewer.h', 48 'browser/certificate_viewer.h',
49 'browser/child_process_launcher.cc', 49 'browser/child_process_launcher.cc',
50 'browser/child_process_launcher.h', 50 'browser/child_process_launcher.h',
51 'browser/child_process_security_policy.cc', 51 'browser/child_process_security_policy.cc',
52 'browser/child_process_security_policy.h', 52 'browser/child_process_security_policy.h',
53 'browser/chrome_blob_storage_context.cc', 53 'browser/chrome_blob_storage_context.cc',
54 'browser/chrome_blob_storage_context.h', 54 'browser/chrome_blob_storage_context.h',
55 'browser/content_browser_client.cc',
55 'browser/content_browser_client.h', 56 'browser/content_browser_client.h',
56 'browser/cross_site_request_manager.cc', 57 'browser/cross_site_request_manager.cc',
57 'browser/cross_site_request_manager.h', 58 'browser/cross_site_request_manager.h',
58 'browser/device_orientation/accelerometer_mac.cc', 59 'browser/device_orientation/accelerometer_mac.cc',
59 'browser/device_orientation/accelerometer_mac.h', 60 'browser/device_orientation/accelerometer_mac.h',
60 'browser/device_orientation/data_fetcher.h', 61 'browser/device_orientation/data_fetcher.h',
61 'browser/device_orientation/message_filter.cc', 62 'browser/device_orientation/message_filter.cc',
62 'browser/device_orientation/message_filter.h', 63 'browser/device_orientation/message_filter.h',
63 'browser/device_orientation/orientation.h', 64 'browser/device_orientation/orientation.h',
64 'browser/device_orientation/provider.cc', 65 'browser/device_orientation/provider.cc',
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'browser/tab_contents/tab_contents_delegate.cc', 298 'browser/tab_contents/tab_contents_delegate.cc',
298 'browser/tab_contents/tab_contents_delegate.h', 299 'browser/tab_contents/tab_contents_delegate.h',
299 'browser/tab_contents/tab_contents_observer.cc', 300 'browser/tab_contents/tab_contents_observer.cc',
300 'browser/tab_contents/tab_contents_observer.h', 301 'browser/tab_contents/tab_contents_observer.h',
301 'browser/tab_contents/tab_contents_view.cc', 302 'browser/tab_contents/tab_contents_view.cc',
302 'browser/tab_contents/tab_contents_view.h', 303 'browser/tab_contents/tab_contents_view.h',
303 'browser/trace_controller.cc', 304 'browser/trace_controller.cc',
304 'browser/trace_controller.h', 305 'browser/trace_controller.h',
305 'browser/trace_message_filter.cc', 306 'browser/trace_message_filter.cc',
306 'browser/trace_message_filter.h', 307 'browser/trace_message_filter.h',
308 'browser/webui/empty_web_ui_factory.cc',
309 'browser/webui/empty_web_ui_factory.h',
310 'browser/webui/generic_handler.cc',
311 'browser/webui/generic_handler.h',
307 'browser/webui/web_ui.cc', 312 'browser/webui/web_ui.cc',
308 'browser/webui/web_ui.h', 313 'browser/webui/web_ui.h',
309 'browser/webui/web_ui_factory.cc', 314 'browser/webui/web_ui_factory.cc',
310 'browser/webui/web_ui_factory.h', 315 'browser/webui/web_ui_factory.h',
311 'browser/webui/web_ui_util.cc', 316 'browser/webui/web_ui_util.cc',
312 'browser/webui/web_ui_util.h', 317 'browser/webui/web_ui_util.h',
313 'browser/worker_host/message_port_service.cc', 318 'browser/worker_host/message_port_service.cc',
314 'browser/worker_host/message_port_service.h', 319 'browser/worker_host/message_port_service.h',
315 'browser/worker_host/worker_document_set.cc', 320 'browser/worker_host/worker_document_set.cc',
316 'browser/worker_host/worker_document_set.h', 321 'browser/worker_host/worker_document_set.h',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 'mac_bundle_resources': [ 360 'mac_bundle_resources': [
356 'browser/gpu.sb', 361 'browser/gpu.sb',
357 'browser/worker.sb', 362 'browser/worker.sb',
358 ], 363 ],
359 }, 364 },
360 }], 365 }],
361 ], 366 ],
362 }, 367 },
363 ], 368 ],
364 } 369 }
OLDNEW
« no previous file with comments | « content/browser/webui/web_ui_factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698