OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 29 matching lines...) Expand all Loading... |
40 'sources/': [ | 40 'sources/': [ |
41 ['exclude', '\\.mm?$'], | 41 ['exclude', '\\.mm?$'], |
42 ], | 42 ], |
43 }], | 43 }], |
44 ['OS=="win"', {'sources/': [ | 44 ['OS=="win"', {'sources/': [ |
45 ['include', '_(views|win)(_unittest)?\\.cc$'], | 45 ['include', '_(views|win)(_unittest)?\\.cc$'], |
46 ['include', '/win/'], | 46 ['include', '/win/'], |
47 ['include', '/(views|win)_[^/]*\\.cc$'], | 47 ['include', '/(views|win)_[^/]*\\.cc$'], |
48 ]}], | 48 ]}], |
49 ['OS=="linux" and toolkit_views==1', {'sources/': [ | 49 ['OS=="linux" and toolkit_views==1', {'sources/': [ |
50 ['include', '/views_[^/]*\\.cc$'], | 50 ['include', '_views\\.cc$'], |
51 ]}], | 51 ]}], |
52 ], | 52 ], |
53 }, | 53 }, |
54 'targets': [ | 54 'targets': [ |
55 { | 55 { |
56 # TODO(mark): It would be better if each static library that needed | 56 # TODO(mark): It would be better if each static library that needed |
57 # to run grit would list its own .grd files, but unfortunately some | 57 # to run grit would list its own .grd files, but unfortunately some |
58 # of the static libraries currently have circular dependencies among | 58 # of the static libraries currently have circular dependencies among |
59 # generated headers. | 59 # generated headers. |
60 'target_name': 'chrome_resources', | 60 'target_name': 'chrome_resources', |
(...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1683 ['exclude', '^browser/views/'], | 1683 ['exclude', '^browser/views/'], |
1684 ], | 1684 ], |
1685 'conditions': [ | 1685 'conditions': [ |
1686 ['toolkit_views==1',{ | 1686 ['toolkit_views==1',{ |
1687 'sources/': [ | 1687 'sources/': [ |
1688 ['include', '^browser/dock_info_gtk.cc'], | 1688 ['include', '^browser/dock_info_gtk.cc'], |
1689 ['include', '^browser/dock_info.cc'], | 1689 ['include', '^browser/dock_info.cc'], |
1690 ['include', '^browser/dock_info.h'], | 1690 ['include', '^browser/dock_info.h'], |
1691 ['include', '^browser/views/bookmark_bar_view.cc'], | 1691 ['include', '^browser/views/bookmark_bar_view.cc'], |
1692 ['include', '^browser/views/bookmark_bar_view.h'], | 1692 ['include', '^browser/views/bookmark_bar_view.h'], |
| 1693 ['include', '^browser/views/bookmark_context_menu.cc'], |
| 1694 ['include', '^browser/views/bookmark_context_menu.h'], |
1693 ['include', '^browser/views/bookmark_menu_button.cc'], | 1695 ['include', '^browser/views/bookmark_menu_button.cc'], |
1694 ['include', '^browser/views/bookmark_menu_button.h'], | 1696 ['include', '^browser/views/bookmark_menu_button.h'], |
1695 ['include', '^browser/views/bookmark_menu_controller_views.cc'], | 1697 ['include', '^browser/views/bookmark_menu_controller_views.cc'], |
1696 ['include', '^browser/views/dialog_stubs_gtk.cc'], | 1698 ['include', '^browser/views/dialog_stubs_gtk.cc'], |
1697 ['include', '^browser/views/download_item_view.cc'], | 1699 ['include', '^browser/views/download_item_view.cc'], |
1698 ['include', '^browser/views/download_item_view.h'], | 1700 ['include', '^browser/views/download_item_view.h'], |
1699 ['include', '^browser/views/download_shelf_view.cc'], | 1701 ['include', '^browser/views/download_shelf_view.cc'], |
1700 ['include', '^browser/views/download_shelf_view.h'], | 1702 ['include', '^browser/views/download_shelf_view.h'], |
1701 ['include', '^browser/views/event_utils.cc'], | 1703 ['include', '^browser/views/event_utils.cc'], |
1702 ['include', '^browser/views/event_utils.h'], | 1704 ['include', '^browser/views/event_utils.h'], |
(...skipping 2392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4095 # Use outputs of this action as inputs for the main target build. | 4097 # Use outputs of this action as inputs for the main target build. |
4096 # Seems as a misnomer but makes this happy on Linux (scons). | 4098 # Seems as a misnomer but makes this happy on Linux (scons). |
4097 'process_outputs_as_sources': 1, | 4099 'process_outputs_as_sources': 1, |
4098 }, | 4100 }, |
4099 ], # 'actions' | 4101 ], # 'actions' |
4100 }, | 4102 }, |
4101 ] | 4103 ] |
4102 }], | 4104 }], |
4103 ], # 'conditions' | 4105 ], # 'conditions' |
4104 } | 4106 } |
OLD | NEW |