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

Side by Side Diff: BUILD.gn

Issue 1374173003: Make GN build deps public (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « no previous file | no next file » | 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("//third_party/icu/config.gni") 5 import("//third_party/icu/config.gni")
6 6
7 # Meta target that includes both icuuc and icui18n. Most targets want both. 7 # Meta target that includes both icuuc and icui18n. Most targets want both.
8 # You can depend on the individually if you need to. 8 # You can depend on the individually if you need to.
9 group("icu") { 9 group("icu") {
10 deps = [ 10 public_deps = [
11 ":icui18n", 11 ":icui18n",
12 ":icuuc", 12 ":icuuc",
13 ] 13 ]
14 } 14 }
15 15
16 # Shared config used by ICU and all dependents. 16 # Shared config used by ICU and all dependents.
17 config("icu_config") { 17 config("icu_config") {
18 defines = [ 18 defines = [
19 # Tell ICU to not insert |using namespace icu;| into its headers, 19 # Tell ICU to not insert |using namespace icu;| into its headers,
20 # so that chrome's source explicitly has to use |icu::|. 20 # so that chrome's source explicitly has to use |icu::|.
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 sources = [ 583 sources = [
584 "android/icudtl_dat.S", 584 "android/icudtl_dat.S",
585 ] 585 ]
586 } else { 586 } else {
587 assert(false, "No icu data for this platform") 587 assert(false, "No icu data for this platform")
588 } 588 }
589 defines = [ "U_HIDE_DATA_SYMBOL" ] 589 defines = [ "U_HIDE_DATA_SYMBOL" ]
590 } 590 }
591 } 591 }
592 } 592 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698