OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 |
5 static_library("common") { | 7 static_library("common") { |
6 sources = [ | 8 sources = [ |
7 "content_settings.cc", | 9 "content_settings.cc", |
8 "content_settings.h", | 10 "content_settings.h", |
9 "content_settings_pattern.cc", | 11 "content_settings_pattern.cc", |
10 "content_settings_pattern.h", | 12 "content_settings_pattern.h", |
11 "content_settings_pattern_parser.cc", | 13 "content_settings_pattern_parser.cc", |
12 "content_settings_pattern_parser.h", | 14 "content_settings_pattern_parser.h", |
13 "content_settings_types.h", | 15 "content_settings_types.h", |
14 "pref_names.cc", | 16 "pref_names.cc", |
(...skipping 17 matching lines...) Expand all Loading... |
32 ] | 34 ] |
33 | 35 |
34 deps = [ | 36 deps = [ |
35 ":common", | 37 ":common", |
36 "//net", | 38 "//net", |
37 "//testing/gmock", | 39 "//testing/gmock", |
38 "//testing/gtest", | 40 "//testing/gtest", |
39 "//url", | 41 "//url", |
40 ] | 42 ] |
41 } | 43 } |
| 44 |
| 45 mojom("mojo_bindings") { |
| 46 sources = [ |
| 47 "content_settings.mojom", |
| 48 ] |
| 49 } |
OLD | NEW |