1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright (c) 2006-2008 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.
Import('env')
env = env.Clone()
env.Prepend(
CPPPATH = [
'$CHROME_DIR/tools/build/win',
'$CHROME_SRC_DIR',
],
CCFLAGS = [
'/TP',
#'/Wp64',
],
)
env.Append(
CPPPATH = [
'$TARGET_ROOT/grit_derived_sources',
'$ICU38_DIR/public/common',
'$ICU38_DIR/public/i18n',
'$SKIA_DIR/include',
'$SKIA_DIR/include/corecg',
'$SKIA_DIR/include/platform',
'third_party/wtl/include',
],
)
input_files = [
'accelerator.cc',
'accelerator_handler.cc',
'accessibility/accessible_wrapper.cc',
'accessibility/autocomplete_accessibility.cc',
'accessibility/view_accessibility.cc',
'aero_tooltip_manager.cc',
'background.cc',
'base_button.cc',
'bitmap_scroll_bar.cc',
'border.cc',
'button.cc',
'button_dropdown.cc',
'checkbox.cc',
'chrome_menu.cc',
'client_view.cc',
'combo_box.cc',
'custom_frame_window.cc',
'dialog_delegate.cc',
'dialog_client_view.cc',
'decision.cc',
'event.cc',
'external_focus_tracker.cc',
'focus_manager.cc',
'grid_layout.cc',
'group_table_view.cc',
'hwnd_view.cc',
'image_view.cc',
'label.cc',
'layout_manager.cc',
'link.cc',
'menu.cc',
'menu_button.cc',
'message_box_view.cc',
'native_button.cc',
'native_control.cc',
'native_scroll_bar.cc',
'non_client_view.cc',
'painter.cc',
'radio_button.cc',
'repeat_controller.cc',
'resize_corner.cc',
'root_view.cc',
'root_view_drop_target.cc',
'scroll_bar.cc',
'scroll_view.cc',
'separator.cc',
'single_split_view.cc',
'tabbed_pane.cc',
'table_view.cc',
'text_button.cc',
'text_field.cc',
'throbber.cc',
'tooltip_manager.cc',
'tree_view.cc',
'view.cc',
'view_constants.cc',
'view_storage.cc',
'widget_win.cc',
'window.cc',
'window_delegate.cc',
]
env.ChromeStaticLibrary('views', input_files)
|