Chromium Code Reviews| 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 static_library("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "language_model.cc", | 9 "language_model.cc", |
| 10 "language_model.h", | 10 "language_model.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 60 "//components/translate/core/browser/proto", | 60 "//components/translate/core/browser/proto", |
| 61 "//components/translate/core/common", | 61 "//components/translate/core/common", |
| 62 "//components/variations", | 62 "//components/variations", |
| 63 "//google_apis", | 63 "//google_apis", |
| 64 "//net", | 64 "//net", |
| 65 "//third_party/icu", | 65 "//third_party/icu", |
| 66 "//ui/base", | 66 "//ui/base", |
| 67 "//url", | 67 "//url", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 public_deps = [ | |
| 71 "//components/metrics/proto", | |
|
hamelphi
2016/10/13 15:13:56
This dependency is also in deps. I suppose we only
Roger McFarlane (Chromium)
2016/10/13 19:30:16
fixed
the public_deps is needed: public_deps is t
hamelphi
2016/10/13 20:47:02
My point was that you probably can remove "//compo
Roger McFarlane (Chromium)
2016/10/14 19:59:05
ah... yeah, that's what I did. I thought you were
| |
| 72 ] | |
| 73 | |
| 70 if (!use_aura) { | 74 if (!use_aura) { |
| 71 sources += [ | 75 sources += [ |
| 72 "translate_infobar_delegate.cc", | 76 "translate_infobar_delegate.cc", |
| 73 "translate_infobar_delegate.h", | 77 "translate_infobar_delegate.h", |
| 74 ] | 78 ] |
| 75 deps += [ "//components/infobars/core" ] | 79 deps += [ "//components/infobars/core" ] |
| 76 } | 80 } |
| 77 | 81 |
| 78 if (is_mac) { | 82 if (is_mac) { |
| 79 sources += [ | 83 sources += [ |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 106 "//components/pref_registry:test_support", | 110 "//components/pref_registry:test_support", |
| 107 "//components/prefs", | 111 "//components/prefs", |
| 108 "//components/prefs:test_support", | 112 "//components/prefs:test_support", |
| 109 "//components/translate/core/browser/proto", | 113 "//components/translate/core/browser/proto", |
| 110 "//components/translate/core/common", | 114 "//components/translate/core/common", |
| 111 "//components/variations", | 115 "//components/variations", |
| 112 "//net:test_support", | 116 "//net:test_support", |
| 113 "//testing/gtest", | 117 "//testing/gtest", |
| 114 ] | 118 ] |
| 115 } | 119 } |
| OLD | NEW |