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 "ntp_snippets_status_service.h", | 73 "content_suggestions_category_status.h", |
74 ] | 74 ] |
75 } | 75 } |
76 } | 76 } |
77 | 77 |
78 source_set("unit_tests") { | 78 source_set("unit_tests") { |
79 testonly = true | 79 testonly = true |
80 sources = [ | 80 sources = [ |
81 "content_suggestions_service_unittest.cc", | 81 "content_suggestions_service_unittest.cc", |
82 "ntp_snippet_unittest.cc", | 82 "ntp_snippet_unittest.cc", |
83 "ntp_snippets_database_unittest.cc", | 83 "ntp_snippets_database_unittest.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
96 "//components/leveldb_proto:test_support", | 96 "//components/leveldb_proto:test_support", |
97 "//components/signin/core/browser:test_support", | 97 "//components/signin/core/browser:test_support", |
98 "//components/signin/core/common", | 98 "//components/signin/core/common", |
99 "//components/sync_driver:test_support", | 99 "//components/sync_driver:test_support", |
100 "//components/variations", | 100 "//components/variations", |
101 "//net:test_support", | 101 "//net:test_support", |
102 "//testing/gtest", | 102 "//testing/gtest", |
103 "//third_party/icu/", | 103 "//third_party/icu/", |
104 ] | 104 ] |
105 } | 105 } |
OLD | NEW |