| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("browser") { | 9 source_set("browser") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "spellchecker_session_bridge_android.cc", | 29 "spellchecker_session_bridge_android.cc", |
| 30 "spellchecker_session_bridge_android.h", | 30 "spellchecker_session_bridge_android.h", |
| 31 "spelling_service_client.cc", | 31 "spelling_service_client.cc", |
| 32 "spelling_service_client.h", | 32 "spelling_service_client.h", |
| 33 "word_trimmer.cc", | 33 "word_trimmer.cc", |
| 34 "word_trimmer.h", | 34 "word_trimmer.h", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 public_deps = [ | 37 public_deps = [ |
| 38 "//base", | 38 "//base", |
| 39 "//components/spellcheck:build_features", |
| 39 "//components/spellcheck/common", | 40 "//components/spellcheck/common", |
| 40 ] | 41 ] |
| 41 deps = [ | 42 deps = [ |
| 42 "//components/data_use_measurement/core", | 43 "//components/data_use_measurement/core", |
| 43 "//components/prefs", | 44 "//components/prefs", |
| 44 "//components/user_prefs", | 45 "//components/user_prefs", |
| 45 "//content/public/browser", | 46 "//content/public/browser", |
| 46 "//content/public/common", | 47 "//content/public/common", |
| 47 "//google_apis", | 48 "//google_apis", |
| 48 "//net", | 49 "//net", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 73 ":browser", | 74 ":browser", |
| 74 "//base", | 75 "//base", |
| 75 "//base/test:test_support", | 76 "//base/test:test_support", |
| 76 "//components/spellcheck/common", | 77 "//components/spellcheck/common", |
| 77 "//components/variations", | 78 "//components/variations", |
| 78 "//content/test:test_support", | 79 "//content/test:test_support", |
| 79 "//net:test_support", | 80 "//net:test_support", |
| 80 "//testing/gtest", | 81 "//testing/gtest", |
| 81 ] | 82 ] |
| 82 } | 83 } |
| OLD | NEW |