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