| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//mojo/system.gni") | |
| 6 | |
| 7 # GYP version: mojo/mojo_examples.gypi:mojo_pepper_container_app | 5 # GYP version: mojo/mojo_examples.gypi:mojo_pepper_container_app |
| 8 shared_library("pepper_container_app") { | 6 shared_library("pepper_container_app") { |
| 9 output_name = "mojo_pepper_container_app" | 7 output_name = "mojo_pepper_container_app" |
| 10 | 8 |
| 11 sources = [ | 9 sources = [ |
| 12 # Source files from ppapi/. | 10 # Source files from ppapi/. |
| 13 # An alternative is to depend on | 11 # An alternative is to depend on |
| 14 # "//ppapi/ppapi_shared', but that target includes | 12 # "//ppapi/ppapi_shared', but that target includes |
| 15 # a lot of things that we don't need. | 13 # a lot of things that we don't need. |
| 16 # TODO(yzshen): Consider extracting these files into a separate target | 14 # TODO(yzshen): Consider extracting these files into a separate target |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 86 |
| 89 deps = [ | 87 deps = [ |
| 90 "//base", | 88 "//base", |
| 91 "//base/third_party/dynamic_annotations", | 89 "//base/third_party/dynamic_annotations", |
| 92 "//gpu/command_buffer/common", | 90 "//gpu/command_buffer/common", |
| 93 "//ppapi:ppapi_c", | 91 "//ppapi:ppapi_c", |
| 94 # TODO(GYP): | 92 # TODO(GYP): |
| 95 # "//ppapi:ppapi_example_gles2_spinning_cube", | 93 # "//ppapi:ppapi_example_gles2_spinning_cube", |
| 96 "//mojo/application", | 94 "//mojo/application", |
| 97 "//mojo/common", | 95 "//mojo/common", |
| 96 "//mojo/public/c/system:for_shared_library", |
| 97 "//mojo/public/gles2:for_shared_library", |
| 98 "//mojo/services/public/interfaces/geometry", | 98 "//mojo/services/public/interfaces/geometry", |
| 99 "//mojo/services/public/interfaces/gpu", | 99 "//mojo/services/public/interfaces/gpu", |
| 100 "//mojo/services/public/interfaces/native_viewport", | 100 "//mojo/services/public/interfaces/native_viewport", |
| 101 "//ui/events:events_base", | 101 "//ui/events:events_base", |
| 102 ] + mojo_system_for_shared_library + mojo_gles2_for_shared_library | 102 ] |
| 103 } | 103 } |
| OLD | NEW |