Commit 101d0307 authored by tfarina@chromium.org's avatar tfarina@chromium.org

Add BUILD.gn file for components's translate_common target.

BUG=None
TEST=gn, ninja -C out/Default translate_common
R=brettw@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/117813003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242112 0039d316-1c4b-4281-b951-d872f2087c98
parent ce70c987
...@@ -12,6 +12,7 @@ group("root") { ...@@ -12,6 +12,7 @@ group("root") {
"//components/navigation_metrics", "//components/navigation_metrics",
"//components/onc:onc_component", "//components/onc:onc_component",
"//components/startup_metric_utils", "//components/startup_metric_utils",
"//components/translate:translate_common",
"//crypto", "//crypto",
"//device/usb:device_usb", "//device/usb:device_usb",
"//ipc", "//ipc",
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
component("navigation_metrics") { static_library("navigation_metrics") {
external = true external = true
sources = [ sources = [
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
component("startup_metric_utils") { static_library("startup_metric_utils") {
external = true external = true
sources = [ sources = [
......
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
static_library("translate_common") {
external = true
sources = [
"common/translate_constants.cc",
"common/translate_constants.h",
"common/translate_metrics.cc",
"common/translate_metrics.h",
"common/translate_switches.cc",
"common/translate_switches.h",
"common/translate_util.cc",
"common/translate_util.h",
]
deps = [
"//base",
"//url",
]
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment