blob: bac285189a01d974376fed353ab917ca95205ce2 [file] [log] [blame]
Adam Barth3d359102015-01-08 11:25:50 -08001# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//mojo/public/mojo_application.gni")
6import("//mojo/public/tools/bindings/mojom.gni")
Benjamin Lermandc3d1932015-03-09 11:17:39 +01007import("//mojo/tools/embed/rules.gni")
Adam Barth3d359102015-01-08 11:25:50 -08008
Benjamin Lermandc3d1932015-03-09 11:17:39 +01009embed_file("embed_icu_data") {
10 source = "$root_build_dir/icudtl.dat"
11 namespace = "icu_data"
12 variable = "kICUData"
Adam Barth3d359102015-01-08 11:25:50 -080013
14 deps = [
15 "//third_party/icu:icudata",
16 ]
17}
18
19mojo_native_application("icu_data") {
20 sources = [
21 "icu_data_impl.cc",
Adam Barth3d359102015-01-08 11:25:50 -080022 ]
23
24 deps = [
25 "//base",
26 "//mojo/application",
27 "//mojo/common",
28 "//mojo/environment:chromium",
Viet-Trung Luu84765c42015-10-10 01:07:51 -070029 "//mojo/services/icu_data/interfaces",
Adam Barth3d359102015-01-08 11:25:50 -080030 ":embed_icu_data",
Adam Barth3d359102015-01-08 11:25:50 -080031 ]
32}