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/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 static_library("browser") { | 7 static_library("browser") { |
8 sources = [ | 8 sources = [ |
9 "content_translate_driver.cc", | 9 "content_translate_driver.cc", |
10 "content_translate_driver.h", | 10 "content_translate_driver.h", |
| 11 "language_model_observer.cc", |
| 12 "language_model_observer.h", |
11 ] | 13 ] |
12 | 14 |
13 public_deps = [ | 15 public_deps = [ |
14 "//base", | 16 "//base", |
15 "//components/translate/content/common", | 17 "//components/translate/content/common", |
16 "//components/translate/core/browser", | 18 "//components/translate/core/browser", |
17 "//components/translate/core/common", | 19 "//components/translate/core/common", |
18 ] | 20 ] |
19 deps = [ | 21 deps = [ |
20 "//content/public/browser", | 22 "//content/public/browser", |
21 "//content/public/common", | 23 "//content/public/common", |
22 "//net", | 24 "//net", |
23 ] | 25 ] |
24 } | 26 } |
OLD | NEW |