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 2319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2330 ['use_gconf==0', { | 2330 ['use_gconf==0', { |
2331 'sources!': [ | 2331 'sources!': [ |
2332 'browser/ui/gtk/gconf_titlebar_listener.cc', | 2332 'browser/ui/gtk/gconf_titlebar_listener.cc', |
2333 'browser/ui/gtk/gconf_titlebar_listener.h', | 2333 'browser/ui/gtk/gconf_titlebar_listener.h', |
2334 ], | 2334 ], |
2335 }], | 2335 }], |
2336 ['use_ash==1', { | 2336 ['use_ash==1', { |
2337 'dependencies': [ | 2337 'dependencies': [ |
2338 '../ash/ash.gyp:ash', | 2338 '../ash/ash.gyp:ash', |
2339 '../ash/ash_strings.gyp:ash_strings', | 2339 '../ash/ash_strings.gyp:ash_strings', |
2340 '../ui/message_center/message_center.gyp:message_center', | |
2341 ], | |
2342 }], | |
2343 ['OS=="win"', { | |
2344 'dependencies': [ | |
2345 '../ui/message_center/message_center.gyp:message_center' | |
2346 ], | 2340 ], |
2347 }], | 2341 }], |
2348 ['use_aura==1 and use_ash==0 and OS=="linux"', { | 2342 ['use_aura==1 and use_ash==0 and OS=="linux"', { |
2349 'dependencies': [ | 2343 'dependencies': [ |
2350 # gtk2 is the only component that can interact with gtk2 in our new | 2344 # gtk2 is the only component that can interact with gtk2 in our new |
2351 # world. | 2345 # world. |
2352 'browser/ui/libgtk2ui/libgtk2ui.gyp:gtk2ui', | 2346 'browser/ui/libgtk2ui/libgtk2ui.gyp:gtk2ui', |
2353 ], | 2347 ], |
2354 }], | 2348 }], |
2355 ['use_aura==1', { | 2349 ['use_aura==1', { |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2795 ['enable_app_list==1', { | 2789 ['enable_app_list==1', { |
2796 'dependencies': [ | 2790 'dependencies': [ |
2797 '../ui/app_list/app_list.gyp:app_list', | 2791 '../ui/app_list/app_list.gyp:app_list', |
2798 ], | 2792 ], |
2799 }, { # else: enable_app_list==0 | 2793 }, { # else: enable_app_list==0 |
2800 'sources/': [ | 2794 'sources/': [ |
2801 ['exclude', '^browser/ui/views/app_list/'], | 2795 ['exclude', '^browser/ui/views/app_list/'], |
2802 ['exclude', '^browser/ui/app_list/'], | 2796 ['exclude', '^browser/ui/app_list/'], |
2803 ] | 2797 ] |
2804 }], | 2798 }], |
| 2799 ['enable_message_center==1', { |
| 2800 'dependencies': [ |
| 2801 '../ui/message_center/message_center.gyp:message_center', |
| 2802 ], |
| 2803 }], |
2805 ], | 2804 ], |
2806 }, | 2805 }, |
2807 ], | 2806 ], |
2808 } | 2807 } |
OLD | NEW |