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

Side by Side Diff: mojo/mojo_examples.gypi

Issue 340453002: Mojo: HTML Viewer based on Blink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build Created 6 years, 6 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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'target_name': 'package_mojo_wget', 88 'target_name': 'package_mojo_wget',
89 'variables': { 89 'variables': {
90 'app_name': 'mojo_wget', 90 'app_name': 'mojo_wget',
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 '../skia/skia.gyp:skia', 99 '../skia/skia.gyp:skia',
100 '../third_party/WebKit/public/blink.gyp:blink',
101 '../url/url.gyp:url_lib',
99 'mojo_application', 102 'mojo_application',
100 'mojo_cpp_bindings', 103 'mojo_cpp_bindings',
101 'mojo_environment_chromium', 104 'mojo_environment_chromium',
102 'mojo_navigation_bindings', 105 'mojo_navigation_bindings',
103 'mojo_network_bindings', 106 'mojo_network_bindings',
104 'mojo_launcher_bindings', 107 'mojo_launcher_bindings',
105 'mojo_system_impl', 108 'mojo_system_impl',
106 'mojo_utility', 109 'mojo_utility',
107 'mojo_view_manager_lib', 110 'mojo_view_manager_lib',
108 ], 111 ],
112 'include_dirs': [
113 'third_party/WebKit'
114 ],
109 'sources': [ 115 'sources': [
116 'examples/html_viewer/blink_platform_impl.cc',
117 'examples/html_viewer/blink_platform_impl.h',
110 'examples/html_viewer/html_viewer.cc', 118 'examples/html_viewer/html_viewer.cc',
119 'examples/html_viewer/html_document_view.cc',
120 'examples/html_viewer/html_document_view.h',
121 'examples/html_viewer/webmimeregistry_impl.cc',
122 'examples/html_viewer/webmimeregistry_impl.h',
123 'examples/html_viewer/webthread_impl.cc',
124 'examples/html_viewer/webthread_impl.h',
125 'examples/html_viewer/weburlloader_impl.cc',
126 'examples/html_viewer/weburlloader_impl.h',
111 'public/cpp/application/lib/mojo_main_chromium.cc', 127 'public/cpp/application/lib/mojo_main_chromium.cc',
112 ], 128 ],
113 }, 129 },
114 { 130 {
115 'target_name': 'mojo_image_viewer', 131 'target_name': 'mojo_image_viewer',
116 'type': 'shared_library', 132 'type': 'shared_library',
117 'dependencies': [ 133 'dependencies': [
118 '../skia/skia.gyp:skia', 134 '../skia/skia.gyp:skia',
119 '../ui/gfx/gfx.gyp:gfx', 135 '../ui/gfx/gfx.gyp:gfx',
120 'mojo_application', 136 'mojo_application',
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 ], 457 ],
442 'sources': [ 458 'sources': [
443 'examples/dbus_echo/dbus_echo_app.cc', 459 'examples/dbus_echo/dbus_echo_app.cc',
444 'public/cpp/application/lib/mojo_main_standalone.cc', 460 'public/cpp/application/lib/mojo_main_standalone.cc',
445 ], 461 ],
446 }, 462 },
447 ], 463 ],
448 }], 464 }],
449 ], 465 ],
450 } 466 }
OLDNEW
« no previous file with comments | « mojo/examples/html_viewer/weburlloader_impl.cc ('k') | mojo/services/network/url_loader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698