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

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: snapshot 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 '../skia/skia.gyp:skia', 98 '../skia/skia.gyp:skia',
99 '../third_party/WebKit/public/blink.gyp:blink',
99 'mojo_application', 100 'mojo_application',
100 'mojo_cpp_bindings', 101 'mojo_cpp_bindings',
101 'mojo_environment_chromium', 102 'mojo_environment_chromium',
102 'mojo_navigation_bindings', 103 'mojo_navigation_bindings',
103 'mojo_network_bindings', 104 'mojo_network_bindings',
104 'mojo_launcher_bindings', 105 'mojo_launcher_bindings',
105 'mojo_system_impl', 106 'mojo_system_impl',
106 'mojo_utility', 107 'mojo_utility',
107 'mojo_view_manager_lib', 108 'mojo_view_manager_lib',
108 ], 109 ],
110 'include_dirs': [
111 'third_party/WebKit'
112 ],
109 'sources': [ 113 'sources': [
114 'examples/html_viewer/blink_platform_impl.cc',
115 'examples/html_viewer/blink_platform_impl.h',
110 'examples/html_viewer/html_viewer.cc', 116 'examples/html_viewer/html_viewer.cc',
117 'examples/html_viewer/html_document_view.cc',
118 'examples/html_viewer/html_document_view.h',
119 'examples/html_viewer/webmimeregistry_impl.cc',
120 'examples/html_viewer/webmimeregistry_impl.h',
121 'examples/html_viewer/webthread_impl.cc',
122 'examples/html_viewer/webthread_impl.h',
123 'examples/html_viewer/weburlloader_impl.cc',
124 'examples/html_viewer/weburlloader_impl.h',
111 'public/cpp/application/lib/mojo_main_chromium.cc', 125 'public/cpp/application/lib/mojo_main_chromium.cc',
112 ], 126 ],
113 }, 127 },
114 { 128 {
115 'target_name': 'mojo_image_viewer', 129 'target_name': 'mojo_image_viewer',
116 'type': 'shared_library', 130 'type': 'shared_library',
117 'dependencies': [ 131 'dependencies': [
118 '../skia/skia.gyp:skia', 132 '../skia/skia.gyp:skia',
119 '../ui/gfx/gfx.gyp:gfx', 133 '../ui/gfx/gfx.gyp:gfx',
120 'mojo_application', 134 'mojo_application',
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 ], 455 ],
442 'sources': [ 456 'sources': [
443 'examples/dbus_echo/dbus_echo_app.cc', 457 'examples/dbus_echo/dbus_echo_app.cc',
444 'public/cpp/application/lib/mojo_main_standalone.cc', 458 'public/cpp/application/lib/mojo_main_standalone.cc',
445 ], 459 ],
446 }, 460 },
447 ], 461 ],
448 }], 462 }],
449 ], 463 ],
450 } 464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698