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

Side by Side Diff: mojo/mojo_examples.gypi

Issue 358953002: Mojo: Add WebThemeEngine implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « mojo/examples/html_viewer/webthemeengine_impl.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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': 'mojo_sample_app', 8 'target_name': 'mojo_sample_app',
9 'type': 'shared_library', 9 'type': 'shared_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 }, 91 },
92 'includes': [ 'build/package_app.gypi' ], 92 'includes': [ 'build/package_app.gypi' ],
93 }, 93 },
94 { 94 {
95 'target_name': 'mojo_html_viewer', 95 'target_name': 'mojo_html_viewer',
96 'type': 'shared_library', 96 'type': 'shared_library',
97 'dependencies': [ 97 'dependencies': [
98 '../net/net.gyp:net', 98 '../net/net.gyp:net',
99 '../skia/skia.gyp:skia', 99 '../skia/skia.gyp:skia',
100 '../third_party/WebKit/public/blink.gyp:blink', 100 '../third_party/WebKit/public/blink.gyp:blink',
101 '../ui/native_theme/native_theme.gyp:native_theme',
101 '../url/url.gyp:url_lib', 102 '../url/url.gyp:url_lib',
102 'mojo_application', 103 'mojo_application',
103 'mojo_cpp_bindings', 104 'mojo_cpp_bindings',
104 'mojo_environment_chromium', 105 'mojo_environment_chromium',
105 'mojo_navigation_bindings', 106 'mojo_navigation_bindings',
106 'mojo_network_bindings', 107 'mojo_network_bindings',
107 'mojo_launcher_bindings', 108 'mojo_launcher_bindings',
108 'mojo_system_impl', 109 'mojo_system_impl',
109 'mojo_utility', 110 'mojo_utility',
110 'mojo_view_manager_lib', 111 'mojo_view_manager_lib',
111 ], 112 ],
112 'include_dirs': [ 113 'include_dirs': [
113 'third_party/WebKit' 114 'third_party/WebKit'
114 ], 115 ],
115 'sources': [ 116 'sources': [
116 'examples/html_viewer/blink_input_events_type_converters.cc', 117 'examples/html_viewer/blink_input_events_type_converters.cc',
117 'examples/html_viewer/blink_input_events_type_converters.h', 118 'examples/html_viewer/blink_input_events_type_converters.h',
118 'examples/html_viewer/blink_platform_impl.cc', 119 'examples/html_viewer/blink_platform_impl.cc',
119 'examples/html_viewer/blink_platform_impl.h', 120 'examples/html_viewer/blink_platform_impl.h',
120 'examples/html_viewer/html_viewer.cc', 121 'examples/html_viewer/html_viewer.cc',
121 'examples/html_viewer/html_document_view.cc', 122 'examples/html_viewer/html_document_view.cc',
122 'examples/html_viewer/html_document_view.h', 123 'examples/html_viewer/html_document_view.h',
123 'examples/html_viewer/webmimeregistry_impl.cc', 124 'examples/html_viewer/webmimeregistry_impl.cc',
124 'examples/html_viewer/webmimeregistry_impl.h', 125 'examples/html_viewer/webmimeregistry_impl.h',
125 'examples/html_viewer/webstoragenamespace_impl.cc', 126 'examples/html_viewer/webstoragenamespace_impl.cc',
126 'examples/html_viewer/webstoragenamespace_impl.h', 127 'examples/html_viewer/webstoragenamespace_impl.h',
128 'examples/html_viewer/webthemeengine_impl.cc',
129 'examples/html_viewer/webthemeengine_impl.h',
127 'examples/html_viewer/webthread_impl.cc', 130 'examples/html_viewer/webthread_impl.cc',
128 'examples/html_viewer/webthread_impl.h', 131 'examples/html_viewer/webthread_impl.h',
129 'examples/html_viewer/weburlloader_impl.cc', 132 'examples/html_viewer/weburlloader_impl.cc',
130 'examples/html_viewer/weburlloader_impl.h', 133 'examples/html_viewer/weburlloader_impl.h',
131 'public/cpp/application/lib/mojo_main_chromium.cc', 134 'public/cpp/application/lib/mojo_main_chromium.cc',
132 ], 135 ],
133 }, 136 },
134 { 137 {
135 'target_name': 'mojo_media_viewer_bindings', 138 'target_name': 'mojo_media_viewer_bindings',
136 'type': 'static_library', 139 'type': 'static_library',
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 ], 572 ],
570 'sources': [ 573 'sources': [
571 'examples/dbus_echo/dbus_echo_app.cc', 574 'examples/dbus_echo/dbus_echo_app.cc',
572 'public/cpp/application/lib/mojo_main_standalone.cc', 575 'public/cpp/application/lib/mojo_main_standalone.cc',
573 ], 576 ],
574 }, 577 },
575 ], 578 ],
576 }], 579 }],
577 ], 580 ],
578 } 581 }
OLDNEW
« no previous file with comments | « mojo/examples/html_viewer/webthemeengine_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698