Chromium Code Reviews| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 259 'examples/pepper_container_app/plugin_module.h', | 259 'examples/pepper_container_app/plugin_module.h', |
| 260 'examples/pepper_container_app/ppb_core_thunk.cc', | 260 'examples/pepper_container_app/ppb_core_thunk.cc', |
| 261 'examples/pepper_container_app/ppb_opengles2_thunk.cc', | 261 'examples/pepper_container_app/ppb_opengles2_thunk.cc', |
| 262 'examples/pepper_container_app/resource_creation_impl.cc', | 262 'examples/pepper_container_app/resource_creation_impl.cc', |
| 263 'examples/pepper_container_app/resource_creation_impl.h', | 263 'examples/pepper_container_app/resource_creation_impl.h', |
| 264 'examples/pepper_container_app/thunk.h', | 264 'examples/pepper_container_app/thunk.h', |
| 265 'examples/pepper_container_app/type_converters.h', | 265 'examples/pepper_container_app/type_converters.h', |
| 266 'public/cpp/application/lib/mojo_main_chromium.cc', | 266 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 267 ], | 267 ], |
| 268 }, | 268 }, |
| 269 { | |
| 270 'target_name': 'mojo_surfaces_app', | |
| 271 'type': 'shared_library', | |
| 272 'dependencies': [ | |
| 273 '../base/base.gyp:base', | |
| 274 '../cc/cc.gyp:cc_surfaces', | |
| 275 '../ui/gfx/gfx.gyp:gfx', | |
| 276 '../ui/gfx/gfx.gyp:gfx_geometry', | |
| 277 'mojo_application', | |
| 278 'mojo_common_lib', | |
| 279 'mojo_environment_chromium', | |
| 280 'mojo_geometry_bindings', | |
| 281 'mojo_geometry_lib', | |
| 282 'mojo_gles2', | |
| 283 'mojo_native_viewport_bindings', | |
| 284 'mojo_surfaces_bindings', | |
| 285 'mojo_surfaces_app_bindings', | |
| 286 'mojo_surfaces_lib', | |
| 287 #'mojo_system_impl', | |
|
Ben Goodger (Google)
2014/07/07 21:07:33
???
jamesr
2014/07/07 21:11:40
whoops, must be a merge artifact or something. I d
| |
| 288 ], | |
| 289 'sources': [ | |
| 290 'examples/surfaces_app/embedder.cc', | |
| 291 'examples/surfaces_app/embedder.h', | |
| 292 'examples/surfaces_app/surfaces_app.cc', | |
| 293 'examples/surfaces_app/surfaces_util.cc', | |
| 294 'examples/surfaces_app/surfaces_util.h', | |
| 295 'public/cpp/application/lib/mojo_main_chromium.cc', | |
| 296 ], | |
| 297 }, | |
| 298 { | |
| 299 'target_name': 'mojo_surfaces_app_bindings', | |
| 300 'type': 'static_library', | |
| 301 'sources': [ | |
| 302 'examples/surfaces_app/child.mojom', | |
| 303 ], | |
| 304 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | |
| 305 'export_dependent_settings': [ | |
| 306 'mojo_cpp_bindings', | |
| 307 ], | |
| 308 'dependencies': [ | |
| 309 'mojo_cpp_bindings', | |
| 310 ], | |
| 311 }, | |
| 312 { | |
| 313 'target_name': 'package_mojo_surfaces_app', | |
| 314 'variables': { | |
| 315 'app_name': 'mojo_surfaces_app', | |
| 316 }, | |
| 317 'includes': [ 'build/package_app.gypi' ], | |
| 318 }, | |
| 319 { | |
| 320 'target_name': 'mojo_surfaces_child_app', | |
| 321 'type': 'shared_library', | |
| 322 'dependencies': [ | |
| 323 '../cc/cc.gyp:cc_surfaces', | |
| 324 '../ui/gfx/gfx.gyp:gfx', | |
| 325 '../ui/gfx/gfx.gyp:gfx_geometry', | |
| 326 'mojo_application', | |
| 327 'mojo_common_lib', | |
| 328 'mojo_environment_chromium', | |
| 329 'mojo_geometry_bindings', | |
| 330 'mojo_geometry_lib', | |
| 331 'mojo_surfaces_app_bindings', | |
| 332 'mojo_surfaces_bindings', | |
| 333 'mojo_surfaces_lib', | |
| 334 ], | |
| 335 'sources': [ | |
| 336 'examples/surfaces_app/child_app.cc', | |
| 337 'examples/surfaces_app/child_impl.cc', | |
| 338 'examples/surfaces_app/child_impl.h', | |
| 339 'examples/surfaces_app/surfaces_util.cc', | |
| 340 'examples/surfaces_app/surfaces_util.h', | |
| 341 'public/cpp/application/lib/mojo_main_chromium.cc', | |
| 342 ], | |
| 343 }, | |
| 269 ], | 344 ], |
| 270 'conditions': [ | 345 'conditions': [ |
| 271 ['use_aura==1', { | 346 ['use_aura==1', { |
| 272 'targets': [ | 347 'targets': [ |
| 273 { | 348 { |
| 274 'target_name': 'mojo_aura_demo', | 349 'target_name': 'mojo_aura_demo', |
| 275 'type': 'shared_library', | 350 'type': 'shared_library', |
| 276 'dependencies': [ | 351 'dependencies': [ |
| 277 '../base/base.gyp:base', | 352 '../base/base.gyp:base', |
| 278 '../cc/cc.gyp:cc', | 353 '../cc/cc.gyp:cc', |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 572 ], | 647 ], |
| 573 'sources': [ | 648 'sources': [ |
| 574 'examples/dbus_echo/dbus_echo_app.cc', | 649 'examples/dbus_echo/dbus_echo_app.cc', |
| 575 'public/cpp/application/lib/mojo_main_standalone.cc', | 650 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 576 ], | 651 ], |
| 577 }, | 652 }, |
| 578 ], | 653 ], |
| 579 }], | 654 }], |
| 580 ], | 655 ], |
| 581 } | 656 } |
| OLD | NEW |