Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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': 'browser_ui', | 8 'target_name': 'browser_ui', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 2105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2116 'browser/ui/webui/history_ui.cc', | 2116 'browser/ui/webui/history_ui.cc', |
| 2117 'browser/ui/webui/history_ui.h', | 2117 'browser/ui/webui/history_ui.h', |
| 2118 'browser/ui/webui/identity_internals_ui.cc', | 2118 'browser/ui/webui/identity_internals_ui.cc', |
| 2119 'browser/ui/webui/identity_internals_ui.h', | 2119 'browser/ui/webui/identity_internals_ui.h', |
| 2120 'browser/ui/webui/inline_login_ui.cc', | 2120 'browser/ui/webui/inline_login_ui.cc', |
| 2121 'browser/ui/webui/inline_login_ui.h', | 2121 'browser/ui/webui/inline_login_ui.h', |
| 2122 'browser/ui/webui/inspect_ui.cc', | 2122 'browser/ui/webui/inspect_ui.cc', |
| 2123 'browser/ui/webui/inspect_ui.h', | 2123 'browser/ui/webui/inspect_ui.h', |
| 2124 'browser/ui/webui/instant_ui.cc', | 2124 'browser/ui/webui/instant_ui.cc', |
| 2125 'browser/ui/webui/instant_ui.h', | 2125 'browser/ui/webui/instant_ui.h', |
| 2126 'browser/ui/webui/local_discovery/local_discovery_ui.cc', | |
| 2127 'browser/ui/webui/local_discovery/local_discovery_ui.h', | |
| 2128 'browser/ui/webui/local_discovery/local_discovery_ui_handler.cc', | |
| 2129 'browser/ui/webui/local_discovery/local_discovery_ui_handler.h', | |
| 2130 'browser/ui/webui/media/webrtc_logs_ui.cc', | 2126 'browser/ui/webui/media/webrtc_logs_ui.cc', |
| 2131 'browser/ui/webui/media/webrtc_logs_ui.h', | 2127 'browser/ui/webui/media/webrtc_logs_ui.h', |
| 2132 'browser/ui/webui/memory_internals/memory_internals_handler.cc', | 2128 'browser/ui/webui/memory_internals/memory_internals_handler.cc', |
| 2133 'browser/ui/webui/memory_internals/memory_internals_handler.h', | 2129 'browser/ui/webui/memory_internals/memory_internals_handler.h', |
| 2134 'browser/ui/webui/memory_internals/memory_internals_proxy.cc', | 2130 'browser/ui/webui/memory_internals/memory_internals_proxy.cc', |
| 2135 'browser/ui/webui/memory_internals/memory_internals_proxy.h', | 2131 'browser/ui/webui/memory_internals/memory_internals_proxy.h', |
| 2136 'browser/ui/webui/memory_internals/memory_internals_ui.cc', | 2132 'browser/ui/webui/memory_internals/memory_internals_ui.cc', |
| 2137 'browser/ui/webui/memory_internals/memory_internals_ui.h', | 2133 'browser/ui/webui/memory_internals/memory_internals_ui.h', |
| 2138 'browser/ui/webui/metrics_handler.cc', | 2134 'browser/ui/webui/metrics_handler.cc', |
| 2139 'browser/ui/webui/metrics_handler.h', | 2135 'browser/ui/webui/metrics_handler.h', |
| (...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3077 'browser/ui/webui/options/geolocation_options_handler.cc', | 3073 'browser/ui/webui/options/geolocation_options_handler.cc', |
| 3078 'browser/ui/webui/options/geolocation_options_handler.h', | 3074 'browser/ui/webui/options/geolocation_options_handler.h', |
| 3079 ], | 3075 ], |
| 3080 }], | 3076 }], |
| 3081 ['enable_webrtc==0', { | 3077 ['enable_webrtc==0', { |
| 3082 'sources!': [ | 3078 'sources!': [ |
| 3083 'browser/ui/webui/media/webrtc_logs_ui.cc', | 3079 'browser/ui/webui/media/webrtc_logs_ui.cc', |
| 3084 'browser/ui/webui/media/webrtc_logs_ui.h', | 3080 'browser/ui/webui/media/webrtc_logs_ui.h', |
| 3085 ], | 3081 ], |
| 3086 }], | 3082 }], |
| 3083 ['enable_mdns==1', { | |
| 3084 'sources': [ | |
|
Dan Beam
2013/08/07 00:51:28
nit: indent off by 2
Noam Samuel
2013/08/07 17:52:44
Done.
| |
| 3085 'browser/ui/webui/local_discovery/local_discovery_ui.cc', | |
| 3086 'browser/ui/webui/local_discovery/local_discovery_ui.h', | |
| 3087 'browser/ui/webui/local_discovery/local_discovery_ui_handler.cc', | |
| 3088 'browser/ui/webui/local_discovery/local_discovery_ui_handler.h', | |
| 3089 ] | |
|
Dan Beam
2013/08/07 00:51:28
nit: ],
Noam Samuel
2013/08/07 17:52:44
Done.
| |
| 3090 }] | |
|
Dan Beam
2013/08/07 00:51:28
nit: }],
Noam Samuel
2013/08/07 17:52:44
Done.
| |
| 3087 ], | 3091 ], |
| 3088 }, | 3092 }, |
| 3089 ], | 3093 ], |
| 3090 } | 3094 } |
| OLD | NEW |