| 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 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 2564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2575 'target_name': 'unit_tests', | 2575 'target_name': 'unit_tests', |
| 2576 'type': 'executable', | 2576 'type': 'executable', |
| 2577 'dependencies': [ | 2577 'dependencies': [ |
| 2578 'app', | 2578 'app', |
| 2579 'browser', | 2579 'browser', |
| 2580 'common', | 2580 'common', |
| 2581 'renderer', | 2581 'renderer', |
| 2582 'chrome_resources', | 2582 'chrome_resources', |
| 2583 'chrome_strings', | 2583 'chrome_strings', |
| 2584 'test_support_unit', | 2584 'test_support_unit', |
| 2585 '../net/net.gyp:net_test_support', |
| 2585 '../printing/printing.gyp:printing', | 2586 '../printing/printing.gyp:printing', |
| 2586 '../webkit/webkit.gyp:webkit', | 2587 '../webkit/webkit.gyp:webkit', |
| 2587 '../skia/skia.gyp:skia', | 2588 '../skia/skia.gyp:skia', |
| 2588 '../testing/gtest.gyp:gtest', | 2589 '../testing/gtest.gyp:gtest', |
| 2589 '../third_party/icu38/icu38.gyp:icui18n', | 2590 '../third_party/icu38/icu38.gyp:icui18n', |
| 2590 '../third_party/icu38/icu38.gyp:icuuc', | 2591 '../third_party/icu38/icu38.gyp:icuuc', |
| 2591 '../third_party/libxml/libxml.gyp:libxml', | 2592 '../third_party/libxml/libxml.gyp:libxml', |
| 2592 '../third_party/npapi/npapi.gyp:npapi', | 2593 '../third_party/npapi/npapi.gyp:npapi', |
| 2593 ], | 2594 ], |
| 2594 'include_dirs': [ | 2595 'include_dirs': [ |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2676 'browser/history/visit_database_unittest.cc', | 2677 'browser/history/visit_database_unittest.cc', |
| 2677 'browser/history/visit_tracker_unittest.cc', | 2678 'browser/history/visit_tracker_unittest.cc', |
| 2678 'browser/importer/firefox_importer_unittest.cc', | 2679 'browser/importer/firefox_importer_unittest.cc', |
| 2679 'browser/importer/importer_unittest.cc', | 2680 'browser/importer/importer_unittest.cc', |
| 2680 'browser/importer/toolbar_importer_unittest.cc', | 2681 'browser/importer/toolbar_importer_unittest.cc', |
| 2681 'browser/login_prompt_unittest.cc', | 2682 'browser/login_prompt_unittest.cc', |
| 2682 'browser/metrics/metrics_log_unittest.cc', | 2683 'browser/metrics/metrics_log_unittest.cc', |
| 2683 'browser/metrics/metrics_response_unittest.cc', | 2684 'browser/metrics/metrics_response_unittest.cc', |
| 2684 'browser/navigation_controller_unittest.cc', | 2685 'browser/navigation_controller_unittest.cc', |
| 2685 'browser/navigation_entry_unittest.cc', | 2686 'browser/navigation_entry_unittest.cc', |
| 2687 'browser/net/chrome_url_request_context_unittest.cc', |
| 2686 'browser/net/dns_host_info_unittest.cc', | 2688 'browser/net/dns_host_info_unittest.cc', |
| 2687 'browser/net/dns_master_unittest.cc', | 2689 'browser/net/dns_master_unittest.cc', |
| 2688 'browser/net/resolve_proxy_msg_helper_unittest.cc', | 2690 'browser/net/resolve_proxy_msg_helper_unittest.cc', |
| 2689 'browser/net/url_fetcher_unittest.cc', | 2691 'browser/net/url_fetcher_unittest.cc', |
| 2690 'browser/net/url_fixer_upper_unittest.cc', | 2692 'browser/net/url_fixer_upper_unittest.cc', |
| 2691 'browser/password_manager/encryptor_unittest.cc', | 2693 'browser/password_manager/encryptor_unittest.cc', |
| 2692 'browser/password_manager/password_form_manager_unittest.cc', | 2694 'browser/password_manager/password_form_manager_unittest.cc', |
| 2693 'browser/printing/page_number_unittest.cc', | 2695 'browser/printing/page_number_unittest.cc', |
| 2694 'browser/printing/page_overlays_unittest.cc', | 2696 'browser/printing/page_overlays_unittest.cc', |
| 2695 'browser/printing/page_range_unittest.cc', | 2697 'browser/printing/page_range_unittest.cc', |
| (...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3512 # Use outputs of this action as inputs for the main target build. | 3514 # Use outputs of this action as inputs for the main target build. |
| 3513 # Seems as a misnomer but makes this happy on Linux (scons). | 3515 # Seems as a misnomer but makes this happy on Linux (scons). |
| 3514 'process_outputs_as_sources': 1, | 3516 'process_outputs_as_sources': 1, |
| 3515 }, | 3517 }, |
| 3516 ], # 'actions' | 3518 ], # 'actions' |
| 3517 }, | 3519 }, |
| 3518 ] | 3520 ] |
| 3519 }], | 3521 }], |
| 3520 ], # 'conditions' | 3522 ], # 'conditions' |
| 3521 } | 3523 } |
| OLD | NEW |