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

Side by Side Diff: tools/memory_watcher/memory_watcher.gyp

Issue 109433013: Move geometric types to a separate, more lightweight target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'memory_watcher', 11 'target_name': 'memory_watcher',
12 'type': 'shared_library', 12 'type': 'shared_library',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
15 '../../ui/gfx/gfx.gyp:gfx', 15 '../../ui/gfx/gfx.gyp:gfx',
16 '../../ui/gfx/gfx.gyp:gfx_geometry',
16 ], 17 ],
17 'defines': [ 18 'defines': [
18 'BUILD_MEMORY_WATCHER', 19 'BUILD_MEMORY_WATCHER',
19 ], 20 ],
20 'include_dirs': [ 21 'include_dirs': [
21 '../..', 22 '../..',
22 '<(DEPTH)/third_party/wtl/include', 23 '<(DEPTH)/third_party/wtl/include',
23 ], 24 ],
24 # 4748 "/GS can not protect parameters and local variables from local 25 # 4748 "/GS can not protect parameters and local variables from local
25 # buffer overrun because optimizations are disabled in function". 26 # buffer overrun because optimizations are disabled in function".
(...skipping 13 matching lines...) Expand all
39 'memory_watcher.cc', 40 'memory_watcher.cc',
40 'memory_watcher.h', 41 'memory_watcher.h',
41 'mini_disassembler.cc', 42 'mini_disassembler.cc',
42 'preamble_patcher.cc', 43 'preamble_patcher.cc',
43 'preamble_patcher.h', 44 'preamble_patcher.h',
44 'preamble_patcher_with_stub.cc', 45 'preamble_patcher_with_stub.cc',
45 ], 46 ],
46 }, 47 },
47 ], 48 ],
48 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698