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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
63 "//components/offline_pages", | 63 "//components/offline_pages", |
64 "//components/variations", | 64 "//components/variations", |
65 "//third_party/icu/", | 65 "//third_party/icu/", |
66 "//ui/gfx", | 66 "//ui/gfx", |
67 ] | 67 ] |
68 } | 68 } |
69 | 69 |
70 if (is_android) { | 70 if (is_android) { |
71 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 71 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
72 sources = [ | 72 sources = [ |
73 "content_suggestions_category_status.h", | |
73 "ntp_snippets_status_service.h", | 74 "ntp_snippets_status_service.h", |
Marc Treib
2016/07/19 09:30:24
Is this still needed?
Philipp Keck
2016/07/19 13:53:23
No, I removed it along with the comment on the enu
| |
74 ] | 75 ] |
75 } | 76 } |
76 } | 77 } |
77 | 78 |
78 source_set("unit_tests") { | 79 source_set("unit_tests") { |
79 testonly = true | 80 testonly = true |
80 sources = [ | 81 sources = [ |
81 "ntp_snippet_unittest.cc", | 82 "ntp_snippet_unittest.cc", |
82 "ntp_snippets_database_unittest.cc", | 83 "ntp_snippets_database_unittest.cc", |
83 "ntp_snippets_fetcher_unittest.cc", | 84 "ntp_snippets_fetcher_unittest.cc", |
(...skipping 11 matching lines...) Expand all Loading... | |
95 "//components/leveldb_proto:test_support", | 96 "//components/leveldb_proto:test_support", |
96 "//components/signin/core/browser:test_support", | 97 "//components/signin/core/browser:test_support", |
97 "//components/signin/core/common", | 98 "//components/signin/core/common", |
98 "//components/sync_driver:test_support", | 99 "//components/sync_driver:test_support", |
99 "//components/variations", | 100 "//components/variations", |
100 "//net:test_support", | 101 "//net:test_support", |
101 "//testing/gtest", | 102 "//testing/gtest", |
102 "//third_party/icu/", | 103 "//third_party/icu/", |
103 ] | 104 ] |
104 } | 105 } |
OLD | NEW |