| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 mojom = "//components/arc/common/intent_helper.mojom" | |
| 6 public_headers = [ "//components/arc/intent_helper/intent_filter.h" ] | |
| 7 traits_headers = | |
| 8 [ "//components/arc/intent_helper/intent_filter_struct_traits.h" ] | |
| 9 sources = [ | |
| 10 "//components/arc/intent_helper/intent_filter_struct_traits.cc", | |
| 11 ] | |
| 12 type_mappings = [ | |
| 13 "arc.mojom.IntentFilter=::arc::IntentFilter[move_only]", | |
| 14 "arc.mojom.AuthorityEntry=::arc::IntentFilter::AuthorityEntry[move_only]", | |
| 15 "arc.mojom.PatternMatcher=::arc::IntentFilter::PatternMatcher[move_only]", | |
| 16 ] | |
| OLD | NEW |