OLD | NEW |
---|---|
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 | 9 |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 18 matching lines...) Expand all Loading... | |
29 }, | 29 }, |
30 'targets': [ | 30 'targets': [ |
31 { | 31 { |
32 'target_name': 'views', | 32 'target_name': 'views', |
33 'type': '<(component)', | 33 'type': '<(component)', |
34 'dependencies': [ | 34 'dependencies': [ |
35 '../base/base.gyp:base', | 35 '../base/base.gyp:base', |
36 '../base/base.gyp:base_i18n', | 36 '../base/base.gyp:base_i18n', |
37 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | 37 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', |
38 '../build/temp_gyp/googleurl.gyp:googleurl', | 38 '../build/temp_gyp/googleurl.gyp:googleurl', |
39 '../net/net.gyp:net', | |
sky
2011/09/04 16:01:48
looks like drop_target_gtk uses one file from net.
sadrul
2011/09/04 18:14:13
Indeed. I was trying to get rid of net dependency
sky
2011/09/06 14:55:39
We could probably create a ViewsDelegate method fo
| |
40 '../skia/skia.gyp:skia', | 39 '../skia/skia.gyp:skia', |
41 '../third_party/icu/icu.gyp:icui18n', | 40 '../third_party/icu/icu.gyp:icui18n', |
42 '../third_party/icu/icu.gyp:icuuc', | 41 '../third_party/icu/icu.gyp:icuuc', |
43 '../ui/base/strings/ui_strings.gyp:ui_strings', | 42 '../ui/base/strings/ui_strings.gyp:ui_strings', |
44 '../ui/gfx/compositor/compositor.gyp:compositor', | 43 '../ui/gfx/compositor/compositor.gyp:compositor', |
45 '../ui/ui.gyp:ui', | 44 '../ui/ui.gyp:ui', |
46 '../ui/ui.gyp:ui_resources', | 45 '../ui/ui.gyp:ui_resources', |
47 '../ui/ui.gyp:ui_resources_standard', | 46 '../ui/ui.gyp:ui_resources_standard', |
48 ], | 47 ], |
49 'defines': [ | 48 'defines': [ |
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
854 'include_dirs': [ | 853 'include_dirs': [ |
855 '<(DEPTH)/third_party/wtl/include', | 854 '<(DEPTH)/third_party/wtl/include', |
856 ], | 855 ], |
857 }], | 856 }], |
858 ], | 857 ], |
859 }, | 858 }, |
860 ], | 859 ], |
861 }], | 860 }], |
862 ], | 861 ], |
863 } | 862 } |
OLD | NEW |