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

Side by Side Diff: content/content_utility.gypi

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_utility', 8 'target_name': 'content_utility',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'content_common', 11 'content_common',
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 ], 13 ],
14 'sources': [ 14 'sources': [
15 'utility/content_utility_client.cc',
16 'utility/content_utility_client.h', 15 'utility/content_utility_client.h',
17 'utility/utility_main.cc', 16 'utility/utility_main.cc',
18 'utility/utility_thread.cc', 17 'utility/utility_thread.cc',
19 'utility/utility_thread.h', 18 'utility/utility_thread.h',
20 ], 19 ],
21 'include_dirs': [ 20 'include_dirs': [
22 '..', 21 '..',
23 ], 22 ],
24 'conditions': [ 23 'conditions': [
25 ['OS=="mac"', { 24 ['OS=="mac"', {
26 'link_settings': { 25 'link_settings': {
27 'mac_bundle_resources': [ 26 'mac_bundle_resources': [
28 'utility/utility.sb', 27 'utility/utility.sb',
29 ], 28 ],
30 }, 29 },
31 }], 30 }],
32 ], 31 ],
33 }, 32 },
34 ], 33 ],
35 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698