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

Side by Side Diff: extensions/browser/BUILD.gn

Issue 1140153005: ICU msg format support with more than one arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop explicit icu dep from extension/browser and use uversion instead of utype header Created 5 years, 4 months 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
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//extensions/extensions.gni") 7 import("//extensions/extensions.gni")
8 8
9 # GYP version: extensions/extensions.gyp:extensions_browser 9 # GYP version: extensions/extensions.gyp:extensions_browser
10 source_set("browser") { 10 source_set("browser") {
(...skipping 11 matching lines...) Expand all
22 "//content/public/browser", 22 "//content/public/browser",
23 "//crypto:platform", 23 "//crypto:platform",
24 "//extensions/common", 24 "//extensions/common",
25 "//extensions/common/api", 25 "//extensions/common/api",
26 "//extensions/common/api:api_registration", 26 "//extensions/common/api:api_registration",
27 "//extensions/strings", 27 "//extensions/strings",
28 "//google_apis", 28 "//google_apis",
29 "//skia", 29 "//skia",
30 "//third_party/leveldatabase", 30 "//third_party/leveldatabase",
31 "//third_party/re2", 31 "//third_party/re2",
32 "//base:i18n",
Ryan Sleevi 2015/08/03 08:01:41 sort order
jungshik at Google 2015/08/03 20:32:19 Done.
32 ] 33 ]
33 34
34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 35 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
35 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 36 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
36 37
37 if (enable_extensions) { 38 if (enable_extensions) {
38 # Includes all API implementations and the ExtensionsApiClient 39 # Includes all API implementations and the ExtensionsApiClient
39 # interface. Moving an API from src/chrome to src/extensions implies 40 # interface. Moving an API from src/chrome to src/extensions implies
40 # it can be cleanly disabled with enable_extensions=false. 41 # it can be cleanly disabled with enable_extensions=false.
41 # TODO: Eventually the entire extensions module should not be built 42 # TODO: Eventually the entire extensions module should not be built
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 win_or_mac_sources = rebase_path( 92 win_or_mac_sources = rebase_path(
92 extensions_gypi_values.extensions_browser_sources_win_or_mac, 93 extensions_gypi_values.extensions_browser_sources_win_or_mac,
93 ".", 94 ".",
94 "//extensions") 95 "//extensions")
95 sources += win_or_mac_sources 96 sources += win_or_mac_sources
96 } 97 }
97 } 98 }
98 } 99 }
99 } 100 }
100 } 101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698