| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', | 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', |
| 9 | 9 |
| 10 # Keep the archive builder happy. | 10 # Keep the archive builder happy. |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 'test/net/dialog_watchdog.cc', | 439 'test/net/dialog_watchdog.cc', |
| 440 'test/net/dialog_watchdog.h', | 440 'test/net/dialog_watchdog.h', |
| 441 'test/net/fake_external_tab.cc', | 441 'test/net/fake_external_tab.cc', |
| 442 'test/net/fake_external_tab.h', | 442 'test/net/fake_external_tab.h', |
| 443 'test/net/process_singleton_subclass.cc', | 443 'test/net/process_singleton_subclass.cc', |
| 444 'test/net/process_singleton_subclass.h', | 444 'test/net/process_singleton_subclass.h', |
| 445 'test/net/test_automation_provider.cc', | 445 'test/net/test_automation_provider.cc', |
| 446 'test/net/test_automation_provider.h', | 446 'test/net/test_automation_provider.h', |
| 447 'test/net/test_automation_resource_message_filter.cc', | 447 'test/net/test_automation_resource_message_filter.cc', |
| 448 'test/net/test_automation_resource_message_filter.h', | 448 'test/net/test_automation_resource_message_filter.h', |
| 449 'chrome_tab.h', |
| 450 'chrome_tab.idl', |
| 449 ], | 451 ], |
| 450 'include_dirs': [ | 452 'include_dirs': [ |
| 451 # To allow including "chrome_tab.h" | 453 # To allow including "chrome_tab.h" |
| 452 '<(INTERMEDIATE_DIR)', | 454 '<(INTERMEDIATE_DIR)', |
| 453 ], | 455 ], |
| 454 'conditions': [ | 456 'conditions': [ |
| 455 ['OS=="win"', { | 457 ['OS=="win"', { |
| 456 'dependencies': [ | 458 'dependencies': [ |
| 457 '../chrome/chrome.gyp:automation', | 459 '../chrome/chrome.gyp:automation', |
| 458 '../breakpad/breakpad.gyp:breakpad_handler', | 460 '../breakpad/breakpad.gyp:breakpad_handler', |
| 459 '../chrome/installer/installer.gyp:installer_util', | 461 '../chrome/installer/installer.gyp:installer_util', |
| 460 '../google_update/google_update.gyp:google_update', | 462 '../google_update/google_update.gyp:google_update', |
| 461 '../chrome/installer/installer.gyp:installer_util', | 463 '../chrome/installer/installer.gyp:installer_util', |
| 462 ] | 464 ] |
| 463 }], | 465 }], |
| 464 ], | 466 ], |
| 465 }, | 467 }, |
| 466 | 468 |
| 467 { | 469 { |
| 470 'target_name': 'chrome_frame_reliability_tests', |
| 471 'type': 'executable', |
| 472 'dependencies': [ |
| 473 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 474 '../chrome/chrome.gyp:browser', |
| 475 '../chrome/chrome.gyp:utility', |
| 476 '../testing/gtest.gyp:gtest', |
| 477 '../base/allocator/allocator.gyp:allocator', |
| 478 'chrome_frame_npapi', |
| 479 'chrome_frame_strings', |
| 480 ], |
| 481 'sources': [ |
| 482 'test/reliability/run_all_unittests.cc', |
| 483 'test/reliability/page_load_test.cc', |
| 484 'test/reliability/page_load_test.h', |
| 485 'test/reliability/reliability_test_suite.h', |
| 486 'test/chrome_frame_test_utils.cc', |
| 487 'test/chrome_frame_test_utils.h', |
| 488 'chrome_tab.h', |
| 489 'chrome_tab.idl', |
| 490 '../base/test/test_file_util_win.cc', |
| 491 '../chrome/test/ui/ui_test.cc', |
| 492 '../chrome/test/ui/ui_test_suite.cc', |
| 493 '../chrome/test/ui/ui_test_suite.h', |
| 494 '../chrome/test/chrome_process_util_win.cc', |
| 495 '../chrome/test/chrome_process_util.cc', |
| 496 '../chrome/test/chrome_process_util.h', |
| 497 '../chrome/test/chrome_process_util_win.cc', |
| 498 ], |
| 499 'include_dirs': [ |
| 500 # To allow including "chrome_tab.h" |
| 501 '<(INTERMEDIATE_DIR)', |
| 502 ], |
| 503 'resource_include_dirs': [ |
| 504 '<(INTERMEDIATE_DIR)', |
| 505 ], |
| 506 'conditions': [ |
| 507 ['OS=="win"', { |
| 508 'sources': [ |
| 509 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_frame_resources.rc', |
| 510 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_frame_strings.rc', |
| 511 ], |
| 512 'dependencies': [ |
| 513 # TODO(slightlyoff): Get automation targets working on OS X |
| 514 '../chrome/chrome.gyp:automation', |
| 515 '../chrome/installer/installer.gyp:installer_util', |
| 516 '../google_update/google_update.gyp:google_update', |
| 517 ] |
| 518 }], |
| 519 ], |
| 520 }, |
| 521 |
| 522 { |
| 468 'target_name': 'chrome_frame_npapi', | 523 'target_name': 'chrome_frame_npapi', |
| 469 'type': 'static_library', | 524 'type': 'static_library', |
| 470 'dependencies': [ | 525 'dependencies': [ |
| 471 'chrome_frame_strings', | 526 'chrome_frame_strings', |
| 472 '../chrome/chrome.gyp:common', | 527 '../chrome/chrome.gyp:common', |
| 473 'xulrunner_sdk', | 528 'xulrunner_sdk', |
| 474 ], | 529 ], |
| 475 'sources': [ | 530 'sources': [ |
| 476 'chrome_frame_automation.cc', | 531 'chrome_frame_automation.cc', |
| 477 'chrome_frame_automation.h', | 532 'chrome_frame_automation.h', |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 ], | 783 ], |
| 729 } | 784 } |
| 730 | 785 |
| 731 # vim: shiftwidth=2:et:ai:tabstop=2 | 786 # vim: shiftwidth=2:et:ai:tabstop=2 |
| 732 | 787 |
| 733 # Local Variables: | 788 # Local Variables: |
| 734 # tab-width:2 | 789 # tab-width:2 |
| 735 # indent-tabs-mode:nil | 790 # indent-tabs-mode:nil |
| 736 # End: | 791 # End: |
| 737 # vim: set expandtab tabstop=2 shiftwidth=2: | 792 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |