| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "//net", | 47 "//net", |
| 48 "//url", | 48 "//url", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 "//components/data_use_measurement/core", | 52 "//components/data_use_measurement/core", |
| 53 "//components/image_fetcher", | 53 "//components/image_fetcher", |
| 54 "//components/metrics", | 54 "//components/metrics", |
| 55 "//components/ntp_snippets/proto", | 55 "//components/ntp_snippets/proto", |
| 56 "//components/variations", | 56 "//components/variations", |
| 57 "//components/variations/net", |
| 57 "//third_party/icu/", | 58 "//third_party/icu/", |
| 58 "//ui/gfx", | 59 "//ui/gfx", |
| 59 ] | 60 ] |
| 60 } | 61 } |
| 61 | 62 |
| 62 if (is_android) { | 63 if (is_android) { |
| 63 java_cpp_enum("ntp_snippets_java_enums_srcjar") { | 64 java_cpp_enum("ntp_snippets_java_enums_srcjar") { |
| 64 sources = [ | 65 sources = [ |
| 65 "ntp_snippets_status_service.h", | 66 "ntp_snippets_status_service.h", |
| 66 ] | 67 ] |
| (...skipping 20 matching lines...) Expand all Loading... |
| 87 "//components/leveldb_proto:test_support", | 88 "//components/leveldb_proto:test_support", |
| 88 "//components/signin/core/browser:test_support", | 89 "//components/signin/core/browser:test_support", |
| 89 "//components/signin/core/common", | 90 "//components/signin/core/common", |
| 90 "//components/sync_driver:test_support", | 91 "//components/sync_driver:test_support", |
| 91 "//components/variations", | 92 "//components/variations", |
| 92 "//net:test_support", | 93 "//net:test_support", |
| 93 "//testing/gtest", | 94 "//testing/gtest", |
| 94 "//third_party/icu/", | 95 "//third_party/icu/", |
| 95 ] | 96 ] |
| 96 } | 97 } |
| OLD | NEW |