| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 mojom = "//components/nacl/common/nacl.mojom" | 5 mojom = "//components/nacl/common/nacl.mojom" |
| 6 public_headers = | 6 public_headers = [ |
| 7 [ "//native_client/src/trusted/service_runtime/nacl_error_code.h" ] | 7 "//native_client/src/trusted/service_runtime/nacl_error_code.h", |
| 8 "//components/nacl/common/nacl_types.h", |
| 9 "//components/nacl/common/pnacl_types.h", |
| 10 ] |
| 8 traits_headers = [ "//components/nacl/common/nacl_types_param_traits.h" ] | 11 traits_headers = [ "//components/nacl/common/nacl_types_param_traits.h" ] |
| 9 deps = [ | 12 deps = [ |
| 10 "//components/nacl/common:minimal", | 13 "//components/nacl/common:minimal", |
| 11 "//components/nacl/common:nacl_error_code", | 14 "//components/nacl/common:nacl_error_code", |
| 12 "//ipc", | 15 "//ipc", |
| 16 "//url/ipc:url_ipc", |
| 13 ] | 17 ] |
| 14 | 18 |
| 15 type_mappings = [ "nacl.mojom.NaClErrorCode=::NaClErrorCode" ] | 19 type_mappings = [ |
| 20 "nacl.mojom.NaClAppProcessType=::nacl::NaClAppProcessType", |
| 21 "nacl.mojom.NaClErrorCode=::NaClErrorCode", |
| 22 "nacl.mojom.NaClResourcePrefetchRequest=::nacl::NaClResourcePrefetchRequest", |
| 23 "nacl.mojom.PnaclCacheInfo=::nacl::PnaclCacheInfo", |
| 24 ] |
| OLD | NEW |