Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Side by Side Diff: components/translate/content/browser/BUILD.gn

Issue 1466173002: Fix the `sizes` regressions in Linux GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@linux_x64_2
Patch Set: just switch //base/allocator:tcmalloc and //components/translate/content/browser to static libs Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/allocator/BUILD.gn ('k') | tools/perf_expectations/perf_expectations.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 source_set("browser") { 7 static_library("browser") {
8 # TODO(crbug.com/565129) this should be a source_set but
9 # there are static initializers that get accidentally linked
10 # into chrome from that need to be addressed first.
8 sources = [ 11 sources = [
9 "browser_cld_data_provider.cc", 12 "browser_cld_data_provider.cc",
10 "browser_cld_data_provider.h", 13 "browser_cld_data_provider.h",
11 "browser_cld_data_provider_factory.cc", 14 "browser_cld_data_provider_factory.cc",
12 "browser_cld_data_provider_factory.h", 15 "browser_cld_data_provider_factory.h",
13 "browser_cld_utils.cc", 16 "browser_cld_utils.cc",
14 "browser_cld_utils.h", 17 "browser_cld_utils.h",
15 "content_translate_driver.cc", 18 "content_translate_driver.cc",
16 "content_translate_driver.h", 19 "content_translate_driver.h",
17 "data_file_browser_cld_data_provider.cc", 20 "data_file_browser_cld_data_provider.cc",
18 "data_file_browser_cld_data_provider.h", 21 "data_file_browser_cld_data_provider.h",
19 ] 22 ]
20 23
21 deps = [ 24 deps = [
22 "//base", 25 "//base",
23 "//components/translate/content/common", 26 "//components/translate/content/common",
24 "//components/translate/core/browser", 27 "//components/translate/core/browser",
25 "//components/translate/core/common", 28 "//components/translate/core/common",
26 "//content/public/browser", 29 "//content/public/browser",
27 "//content/public/common", 30 "//content/public/common",
28 "//ipc", 31 "//ipc",
29 "//net", 32 "//net",
30 ] 33 ]
31 } 34 }
OLDNEW
« no previous file with comments | « base/allocator/BUILD.gn ('k') | tools/perf_expectations/perf_expectations.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698