| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 component("host") { | 5 component("host") { |
| 6 output_name = "ppapi_host" | 6 output_name = "ppapi_host" |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "dispatch_host_message.h", | 9 "dispatch_host_message.h", |
| 10 "error_conversion.cc", | 10 "error_conversion.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "resource_message_handler.h", | 27 "resource_message_handler.h", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 defines = [ "PPAPI_HOST_IMPLEMENTATION" ] | 30 defines = [ "PPAPI_HOST_IMPLEMENTATION" ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//ipc", | 34 "//ipc", |
| 35 "//media:shared_memory_support", | 35 "//media:shared_memory_support", |
| 36 "//ppapi/c", | 36 "//ppapi/c", |
| 37 "//ppapi/proxy", | |
| 38 "//ppapi/proxy:ipc", | 37 "//ppapi/proxy:ipc", |
| 39 "//ppapi/shared_impl", | 38 "//ppapi/shared_impl", |
| 40 "//ui/events:events_base", | 39 "//ui/events:events_base", |
| 41 "//ui/surface", | 40 "//ui/surface", |
| 42 "//url", | 41 "//url", |
| 43 ] | 42 ] |
| 44 } | 43 } |
| OLD | NEW |