OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # TODO(brettw) this file is a work in progress, it is not currently hooked up |
| 6 # to the build, but currently represents the state of content/common's deps. |
| 7 |
| 8 import("//content/common/common.gni") |
| 9 |
| 10 source_set("common") { |
| 11 # Only targets in the content tree can depend directly on this target. |
| 12 visibility = [ "//content/*" ] |
| 13 |
| 14 sources = rebase_path(content_common_gypi_values.private_common_sources, |
| 15 ".", "//content") |
| 16 |
| 17 forward_dependent_configs_from = [ |
| 18 # TODO(GYP) convert these dependencies. |
| 19 #'../third_party/WebKit/public/blink_headers.gyp:blink_headers', |
| 20 ] |
| 21 |
| 22 deps = [ |
| 23 "//base", |
| 24 "//components/tracing", |
| 25 "//gpu/command_buffer/common", |
| 26 "//net", |
| 27 "//skia", |
| 28 "//third_party/icu", |
| 29 "//ui/accessibility", |
| 30 "//ui/base:ui_base", |
| 31 "//ui/gfx", |
| 32 "//ui/gfx/geometry", |
| 33 "//url", |
| 34 # TODO(GYP) convert these dependencies. |
| 35 #'../third_party/WebKit/public/blink_headers.gyp:blink_headers', |
| 36 #'../third_party/libjingle/libjingle.gyp:libjingle', |
| 37 #'../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', |
| 38 ] |
| 39 } |
OLD | NEW |