| 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 mojom = "//mojo/public/interfaces/bindings/tests/test_native_types.mojom" | 5 mojom = "//mojo/public/interfaces/bindings/tests/test_native_types.mojom" |
| 6 public_headers = [ "//mojo/public/cpp/bindings/tests/pickled_types_blink.h" ] | 6 public_headers = [ "//mojo/public/cpp/bindings/tests/pickled_types_blink.h" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "//mojo/public/cpp/bindings/tests/pickled_types_blink.cc", | 8 "//mojo/public/cpp/bindings/tests/pickled_types_blink.cc", |
| 9 ] | 9 ] |
| 10 deps = [ | 10 deps = [ |
| 11 "//ipc", | 11 "//ipc", |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 type_mappings = [ | 14 type_mappings = [ |
| 15 "mojo.test.PickledEnum=mojo::test::PickledEnumBlink", | 15 "mojo.test.PickledEnum=mojo::test::PickledEnumBlink", |
| 16 "mojo.test.PickledStruct=mojo::test::PickledStructBlink" | 16 "mojo.test.PickledStruct=mojo::test::PickledStructBlink[move_only]", |
| 17 ] | 17 ] |
| OLD | NEW |