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