diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-29 16:55:59 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-29 16:55:59 +0000 |
commit | ee3c06b6b328366cd297b9a601246425c0e9848f (patch) | |
tree | 081b71f18d32c36ced927ee95e995d6cc7ffc6ae /chrome/tools/ipclist | |
parent | 0d1323fb94bd198f3ecd264185dad2dcd5b8f16d (diff) | |
download | chromium_src-ee3c06b6b328366cd297b9a601246425c0e9848f.zip chromium_src-ee3c06b6b328366cd297b9a601246425c0e9848f.tar.gz chromium_src-ee3c06b6b328366cd297b9a601246425c0e9848f.tar.bz2 |
Extract ipclist target from chrome.gyp.
The gyp files under chrome/ are really not well organized, kind of a mess,
so it is hard to find the right places to put things. As most of the things goes
into browser, browser_ui or common libraries, this isn't much an issue though.
But we can do better.
BUG=None
TEST=build/gyp_chromium chrome/tools/ipclist/ipclist.gyp
ninja -C out/Debug ipclist
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/46853003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231583 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/ipclist')
-rw-r--r-- | chrome/tools/ipclist/ipclist.gyp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/chrome/tools/ipclist/ipclist.gyp b/chrome/tools/ipclist/ipclist.gyp new file mode 100644 index 0000000..79ceb175 --- /dev/null +++ b/chrome/tools/ipclist/ipclist.gyp @@ -0,0 +1,22 @@ +# 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. +{ + 'variables': { + 'chromium_code': 1, + }, + 'targets': [ + { + 'target_name': 'ipclist', + 'type': 'executable', + 'dependencies': [ + '../../../base/base.gyp:base', + '../../../skia/skia.gyp:skia', + '../../../third_party/khronos/khronos.gyp:khronos_headers', + ], + 'sources': [ + 'ipclist.cc', + ] + } + ] +} |