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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "//components/variations", | 76 "//components/variations", |
77 "//components/variations/net", | 77 "//components/variations/net", |
78 "//third_party/icu/", | 78 "//third_party/icu/", |
79 "//ui/gfx", | 79 "//ui/gfx", |
80 ] | 80 ] |
81 } | 81 } |
82 | 82 |
83 if (is_android) { | 83 if (is_android) { |
84 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 84 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
85 sources = [ | 85 sources = [ |
| 86 "category.h", |
86 "category_status.h", | 87 "category_status.h", |
87 ] | 88 ] |
88 } | 89 } |
89 } | 90 } |
90 | 91 |
91 source_set("unit_tests") { | 92 source_set("unit_tests") { |
92 testonly = true | 93 testonly = true |
93 sources = [ | 94 sources = [ |
94 "content_suggestions_service_unittest.cc", | 95 "content_suggestions_service_unittest.cc", |
95 "ntp_snippet_unittest.cc", | 96 "ntp_snippet_unittest.cc", |
(...skipping 14 matching lines...) Expand all Loading... |
110 "//components/leveldb_proto:test_support", | 111 "//components/leveldb_proto:test_support", |
111 "//components/signin/core/browser:test_support", | 112 "//components/signin/core/browser:test_support", |
112 "//components/signin/core/common", | 113 "//components/signin/core/common", |
113 "//components/sync_driver:test_support", | 114 "//components/sync_driver:test_support", |
114 "//components/variations", | 115 "//components/variations", |
115 "//net:test_support", | 116 "//net:test_support", |
116 "//testing/gtest", | 117 "//testing/gtest", |
117 "//third_party/icu/", | 118 "//third_party/icu/", |
118 ] | 119 ] |
119 } | 120 } |
OLD | NEW |