| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "//components/variations", | 69 "//components/variations", |
| 70 "//components/variations/net", | 70 "//components/variations/net", |
| 71 "//third_party/icu/", | 71 "//third_party/icu/", |
| 72 "//ui/gfx", | 72 "//ui/gfx", |
| 73 ] | 73 ] |
| 74 } | 74 } |
| 75 | 75 |
| 76 if (is_android) { | 76 if (is_android) { |
| 77 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 77 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
| 78 sources = [ | 78 sources = [ |
| 79 "category.h", |
| 79 "category_status.h", | 80 "category_status.h", |
| 80 ] | 81 ] |
| 81 } | 82 } |
| 82 } | 83 } |
| 83 | 84 |
| 84 source_set("unit_tests") { | 85 source_set("unit_tests") { |
| 85 testonly = true | 86 testonly = true |
| 86 sources = [ | 87 sources = [ |
| 87 "content_suggestions_service_unittest.cc", | 88 "content_suggestions_service_unittest.cc", |
| 88 "ntp_snippet_unittest.cc", | 89 "ntp_snippet_unittest.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 103 "//components/leveldb_proto:test_support", | 104 "//components/leveldb_proto:test_support", |
| 104 "//components/signin/core/browser:test_support", | 105 "//components/signin/core/browser:test_support", |
| 105 "//components/signin/core/common", | 106 "//components/signin/core/common", |
| 106 "//components/sync_driver:test_support", | 107 "//components/sync_driver:test_support", |
| 107 "//components/variations", | 108 "//components/variations", |
| 108 "//net:test_support", | 109 "//net:test_support", |
| 109 "//testing/gtest", | 110 "//testing/gtest", |
| 110 "//third_party/icu/", | 111 "//third_party/icu/", |
| 111 ] | 112 ] |
| 112 } | 113 } |
| OLD | NEW |