OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'variables': { | 6 'variables': { |
7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { | 302 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { |
303 'dependencies': [ | 303 'dependencies': [ |
304 # This is needed by content/app/content_main_runner.cc | 304 # This is needed by content/app/content_main_runner.cc |
305 '../base/allocator/allocator.gyp:allocator', | 305 '../base/allocator/allocator.gyp:allocator', |
306 ], | 306 ], |
307 }], | 307 }], |
308 ['use_aura==1', { | 308 ['use_aura==1', { |
309 'dependencies': [ | 309 'dependencies': [ |
310 '../ui/aura/aura.gyp:aura', | 310 '../ui/aura/aura.gyp:aura', |
311 '../ui/aura/aura.gyp:aura_test_support', | 311 '../ui/aura/aura.gyp:aura_test_support', |
312 '../ui/base/strings/ui_strings.gyp:ui_strings', | |
313 '../ui/events/events.gyp:events', | 312 '../ui/events/events.gyp:events', |
| 313 '../ui/strings/ui_strings.gyp:ui_strings', |
314 '../ui/wm/wm.gyp:wm', | 314 '../ui/wm/wm.gyp:wm', |
315 ], | 315 ], |
316 'conditions': [ | 316 'conditions': [ |
317 ['toolkit_views==1', { | 317 ['toolkit_views==1', { |
318 'dependencies': [ | 318 'dependencies': [ |
319 '../ui/resources/ui_resources.gyp:ui_resources', | 319 '../ui/resources/ui_resources.gyp:ui_resources', |
320 '../ui/views/controls/webview/webview.gyp:webview', | 320 '../ui/views/controls/webview/webview.gyp:webview', |
321 '../ui/views/views.gyp:views', | 321 '../ui/views/views.gyp:views', |
322 '../ui/views/views.gyp:views_test_support', | 322 '../ui/views/views.gyp:views_test_support', |
323 ], | 323 ], |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 }, | 425 }, |
426 { | 426 { |
427 # We build a minimal set of resources so WebKit in content_shell has | 427 # We build a minimal set of resources so WebKit in content_shell has |
428 # access to necessary resources. | 428 # access to necessary resources. |
429 'target_name': 'content_shell_pak', | 429 'target_name': 'content_shell_pak', |
430 'type': 'none', | 430 'type': 'none', |
431 'dependencies': [ | 431 'dependencies': [ |
432 'content_resources.gyp:content_resources', | 432 'content_resources.gyp:content_resources', |
433 'content_shell_resources', | 433 'content_shell_resources', |
434 '<(DEPTH)/net/net.gyp:net_resources', | 434 '<(DEPTH)/net/net.gyp:net_resources', |
435 '<(DEPTH)/ui/base/strings/ui_strings.gyp:ui_strings', | |
436 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', | 435 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', |
| 436 '<(DEPTH)/ui/strings/ui_strings.gyp:ui_strings', |
437 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', | 437 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', |
438 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_strings', | 438 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_strings', |
439 ], | 439 ], |
440 'conditions': [ | 440 'conditions': [ |
441 ['OS!="android" and OS!="ios"', { | 441 ['OS!="android" and OS!="ios"', { |
442 'dependencies': [ | 442 'dependencies': [ |
443 'browser/tracing/tracing_resources.gyp:tracing_resources', | 443 'browser/tracing/tracing_resources.gyp:tracing_resources', |
444 ], | 444 ], |
445 }], | 445 }], |
446 ['OS!="android"', { | 446 ['OS!="android"', { |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1092 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1092 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1093 '--destination_dir', '<(dest_dir)', | 1093 '--destination_dir', '<(dest_dir)', |
1094 ], | 1094 ], |
1095 }, | 1095 }, |
1096 ], | 1096 ], |
1097 }, | 1097 }, |
1098 ], | 1098 ], |
1099 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1099 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1100 ] | 1100 ] |
1101 } | 1101 } |
OLD | NEW |