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 3303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3314 ] | 3314 ] |
3315 }], | 3315 }], |
3316 ], | 3316 ], |
3317 }], | 3317 }], |
3318 ['OS=="linux"', { | 3318 ['OS=="linux"', { |
3319 'conditions': [ | 3319 'conditions': [ |
3320 ['use_aura==1', { | 3320 ['use_aura==1', { |
3321 'dependencies': [ | 3321 'dependencies': [ |
3322 '../build/linux/system.gyp:dbus', | 3322 '../build/linux/system.gyp:dbus', |
3323 '../build/linux/system.gyp:fontconfig', | 3323 '../build/linux/system.gyp:fontconfig', |
3324 '../build/linux/system.gyp:x11', | |
3325 '../dbus/dbus.gyp:dbus', | 3324 '../dbus/dbus.gyp:dbus', |
3326 ], | 3325 ], |
3327 }], | 3326 }], |
3328 # GTK build only | 3327 # GTK build only |
3329 ['toolkit_uses_gtk==1', { | 3328 ['toolkit_uses_gtk==1', { |
3330 'sources/': [ | 3329 'sources/': [ |
3331 ['exclude', '^browser/ui/toolbar/bookmark_sub_menu_model.cc'], | 3330 ['exclude', '^browser/ui/toolbar/bookmark_sub_menu_model.cc'], |
3332 ['exclude', '^browser/ui/views/notifications/balloon_collection_
views.cc'], | 3331 ['exclude', '^browser/ui/views/notifications/balloon_collection_
views.cc'], |
3333 ], | 3332 ], |
3334 }], | 3333 }], |
| 3334 # x11 build |
| 3335 ['use_x11==1', { |
| 3336 'dependencies': [ |
| 3337 '../build/linux/system.gyp:x11', |
| 3338 ], |
| 3339 }], |
3335 ], | 3340 ], |
3336 }], | 3341 }], |
3337 # On chromeos, file manager extension handles the file open/save dialog. | 3342 # On chromeos, file manager extension handles the file open/save dialog. |
3338 ['chromeos==1', { | 3343 ['chromeos==1', { |
3339 'sources/': [ | 3344 'sources/': [ |
3340 ['include', '^browser/ui/views/select_file_dialog_extension.cc'], | 3345 ['include', '^browser/ui/views/select_file_dialog_extension.cc'], |
3341 ['include', '^browser/ui/views/select_file_dialog_extension.h'], | 3346 ['include', '^browser/ui/views/select_file_dialog_extension.h'], |
3342 ['include', '^browser/ui/views/select_file_dialog_extension_factory.
cc'], | 3347 ['include', '^browser/ui/views/select_file_dialog_extension_factory.
cc'], |
3343 ['include', '^browser/ui/views/select_file_dialog_extension_factory.
h'], | 3348 ['include', '^browser/ui/views/select_file_dialog_extension_factory.
h'], |
3344 ]}, { | 3349 ]}, { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3407 'browser/ui/webui/local_discovery/local_discovery_ui.cc', | 3412 'browser/ui/webui/local_discovery/local_discovery_ui.cc', |
3408 'browser/ui/webui/local_discovery/local_discovery_ui.h', | 3413 'browser/ui/webui/local_discovery/local_discovery_ui.h', |
3409 'browser/ui/webui/local_discovery/local_discovery_ui_handler.cc', | 3414 'browser/ui/webui/local_discovery/local_discovery_ui_handler.cc', |
3410 'browser/ui/webui/local_discovery/local_discovery_ui_handler.h', | 3415 'browser/ui/webui/local_discovery/local_discovery_ui_handler.h', |
3411 ], | 3416 ], |
3412 }], | 3417 }], |
3413 ], | 3418 ], |
3414 }, | 3419 }, |
3415 ], | 3420 ], |
3416 } | 3421 } |
OLD | NEW |