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