| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 # (TS, CQ, Waterfall). First we will get this target passing all tests, | 441 # (TS, CQ, Waterfall). First we will get this target passing all tests, |
| 442 # after that we will start the work on buildbot to get this running there. | 442 # after that we will start the work on buildbot to get this running there. |
| 443 # When we consider this stable in the bots, we can go to unit_tests target | 443 # When we consider this stable in the bots, we can go to unit_tests target |
| 444 # and remove the duplicated entries from there, otherwise if we just | 444 # and remove the duplicated entries from there, otherwise if we just |
| 445 # remove them right now we would be losing coverage. | 445 # remove them right now we would be losing coverage. |
| 446 # http://crbug.com/348066 | 446 # http://crbug.com/348066 |
| 447 'target_name': 'extensions_unittests', | 447 'target_name': 'extensions_unittests', |
| 448 'type': 'executable', | 448 'type': 'executable', |
| 449 'dependencies': [ | 449 'dependencies': [ |
| 450 '../base/base.gyp:base', | 450 '../base/base.gyp:base', |
| 451 '../base/base.gyp:run_all_unittests', | |
| 452 '../base/base.gyp:test_support_base', | 451 '../base/base.gyp:test_support_base', |
| 453 '../testing/gtest.gyp:gtest', | 452 '../testing/gtest.gyp:gtest', |
| 454 'extensions_common', | 453 'extensions_common', |
| 455 'extensions_test_support', | 454 'extensions_test_support', |
| 456 ], | 455 ], |
| 457 'sources': [ | 456 'sources': [ |
| 458 'common/api/sockets/sockets_manifest_permission_unittest.cc', | 457 'common/api/sockets/sockets_manifest_permission_unittest.cc', |
| 459 'common/csp_validator_unittest.cc', | 458 'common/csp_validator_unittest.cc', |
| 460 'common/event_filter_unittest.cc', | 459 'common/event_filter_unittest.cc', |
| 461 'common/file_util_unittest.cc', | 460 'common/file_util_unittest.cc', |
| 462 'common/id_util_unittest.cc', | 461 'common/id_util_unittest.cc', |
| 463 'common/manifest_handler_unittest.cc', | 462 'common/manifest_handler_unittest.cc', |
| 464 'common/one_shot_event_unittest.cc', | 463 'common/one_shot_event_unittest.cc', |
| 465 'common/permissions/api_permission_set_unittest.cc', | 464 'common/permissions/api_permission_set_unittest.cc', |
| 466 'common/permissions/manifest_permission_set_unittest.cc', | 465 'common/permissions/manifest_permission_set_unittest.cc', |
| 467 'common/url_pattern_set_unittest.cc', | 466 'common/url_pattern_set_unittest.cc', |
| 468 'common/url_pattern_unittest.cc', | 467 'common/url_pattern_unittest.cc', |
| 469 'common/user_script_unittest.cc', | 468 'common/user_script_unittest.cc', |
| 469 'test/extensions_unittests_main.cc', |
| 470 ], | 470 ], |
| 471 }, | 471 }, |
| 472 ] | 472 ] |
| 473 } | 473 } |
| OLD | NEW |