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 2399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2410 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', | 2410 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', |
2411 '../third_party/npapi/npapi.gyp:npapi', | 2411 '../third_party/npapi/npapi.gyp:npapi', |
2412 '../third_party/re2/re2.gyp:re2', | 2412 '../third_party/re2/re2.gyp:re2', |
2413 '../ui/compositor/compositor.gyp:compositor', | 2413 '../ui/compositor/compositor.gyp:compositor', |
2414 '../ui/surface/surface.gyp:surface', | 2414 '../ui/surface/surface.gyp:surface', |
2415 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs', | 2415 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs', |
2416 '../v8/tools/gyp/v8.gyp:v8', | 2416 '../v8/tools/gyp/v8.gyp:v8', |
2417 '../webkit/common/webkit_common.gyp:webkit_common', | 2417 '../webkit/common/webkit_common.gyp:webkit_common', |
2418 '../webkit/storage_browser.gyp:webkit_storage_browser', | 2418 '../webkit/storage_browser.gyp:webkit_storage_browser', |
2419 '../webkit/storage_common.gyp:webkit_storage_common', | 2419 '../webkit/storage_common.gyp:webkit_storage_common', |
2420 '../webkit/support/webkit_support.gyp:glue', | |
2421 '../webkit/webkit_resources.gyp:webkit_resources', | 2420 '../webkit/webkit_resources.gyp:webkit_resources', |
2422 ], | 2421 ], |
2423 'defines': [ | 2422 'defines': [ |
2424 '<@(nacl_defines)', | 2423 '<@(nacl_defines)', |
2425 ], | 2424 ], |
2426 'direct_dependent_settings': { | 2425 'direct_dependent_settings': { |
2427 'defines': [ | 2426 'defines': [ |
2428 '<@(nacl_defines)', | 2427 '<@(nacl_defines)', |
2429 ], | 2428 ], |
2430 }, | 2429 }, |
2431 }, { # OS == "ios" | 2430 }, { # OS == "ios" |
2432 'dependencies': [ | 2431 'dependencies': [ |
2433 '../net/net.gyp:net', | 2432 '../net/net.gyp:net', |
2434 ], | 2433 ], |
2435 'sources/': [ | 2434 'sources/': [ |
2436 # iOS uses only small portions of browser/ui/. | 2435 # iOS uses only small portions of browser/ui/. |
2437 ['exclude', '\\.(cc|mm)$'], | 2436 ['exclude', '\\.(cc|mm)$'], |
2438 ['include', '_ios\\.(cc|mm)$'], | 2437 ['include', '_ios\\.(cc|mm)$'], |
2439 ['include', '(^|/)ios/'], | 2438 ['include', '(^|/)ios/'], |
2440 # TODO(ios): Add files here as they are updated to compile on iOS. | 2439 # TODO(ios): Add files here as they are updated to compile on iOS. |
2441 ['include', '^browser/ui/profile_error_dialog\\.cc$'], | 2440 ['include', '^browser/ui/profile_error_dialog\\.cc$'], |
2442 ], | 2441 ], |
2443 }], | 2442 }], |
| 2443 ['OS!="ios" and chrome_multiple_dll!=1', { |
| 2444 'dependencies': [ |
| 2445 '../webkit/support/webkit_support.gyp:glue', |
| 2446 ], |
| 2447 }], |
2444 ['OS == "android"', { | 2448 ['OS == "android"', { |
2445 'dependencies': [ | 2449 'dependencies': [ |
2446 '../third_party/openssl/openssl.gyp:openssl', | 2450 '../third_party/openssl/openssl.gyp:openssl', |
2447 ], | 2451 ], |
2448 }], | 2452 }], |
2449 ['enable_one_click_signin==0', { | 2453 ['enable_one_click_signin==0', { |
2450 'sources!': [ | 2454 'sources!': [ |
2451 'browser/ui/cocoa/one_click_signin_bubble_controller.h', | 2455 'browser/ui/cocoa/one_click_signin_bubble_controller.h', |
2452 'browser/ui/cocoa/one_click_signin_bubble_controller.mm', | 2456 'browser/ui/cocoa/one_click_signin_bubble_controller.mm', |
2453 'browser/ui/gtk/one_click_signin_bubble_gtk.cc', | 2457 'browser/ui/gtk/one_click_signin_bubble_gtk.cc', |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3067 ['enable_webrtc==0', { | 3071 ['enable_webrtc==0', { |
3068 'sources!': [ | 3072 'sources!': [ |
3069 'browser/ui/webui/media/webrtc_logs_ui.cc', | 3073 'browser/ui/webui/media/webrtc_logs_ui.cc', |
3070 'browser/ui/webui/media/webrtc_logs_ui.h', | 3074 'browser/ui/webui/media/webrtc_logs_ui.h', |
3071 ], | 3075 ], |
3072 }], | 3076 }], |
3073 ], | 3077 ], |
3074 }, | 3078 }, |
3075 ], | 3079 ], |
3076 } | 3080 } |
OLD | NEW |