| 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 # GYP version: mojo/mojo_examples.gypi:mojo_pepper_container_app | |
| 6 shared_library("pepper_container_app") { | 5 shared_library("pepper_container_app") { |
| 7 output_name = "mojo_pepper_container_app" | 6 output_name = "mojo_pepper_container_app" |
| 8 | 7 |
| 9 sources = [ | 8 sources = [ |
| 10 # Source files from ppapi/. | 9 # Source files from ppapi/. |
| 11 # An alternative is to depend on | 10 # An alternative is to depend on |
| 12 # "//ppapi/ppapi_shared', but that target includes | 11 # "//ppapi/ppapi_shared', but that target includes |
| 13 # a lot of things that we don't need. | 12 # a lot of things that we don't need. |
| 14 # TODO(yzshen): Consider extracting these files into a separate target | 13 # TODO(yzshen): Consider extracting these files into a separate target |
| 15 # which mojo_pepper_container_app and ppapi_shared both depend on. | 14 # which mojo_pepper_container_app and ppapi_shared both depend on. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "//mojo/application", | 93 "//mojo/application", |
| 95 "//mojo/common", | 94 "//mojo/common", |
| 96 "//mojo/public/c/system:for_shared_library", | 95 "//mojo/public/c/system:for_shared_library", |
| 97 "//mojo/public/gles2:for_shared_library", | 96 "//mojo/public/gles2:for_shared_library", |
| 98 "//mojo/services/public/interfaces/geometry", | 97 "//mojo/services/public/interfaces/geometry", |
| 99 "//mojo/services/public/interfaces/gpu", | 98 "//mojo/services/public/interfaces/gpu", |
| 100 "//mojo/services/public/interfaces/native_viewport", | 99 "//mojo/services/public/interfaces/native_viewport", |
| 101 "//ui/events:events_base", | 100 "//ui/events:events_base", |
| 102 ] | 101 ] |
| 103 } | 102 } |
| OLD | NEW |