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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 'browser/test_extensions_browser_client.cc', | 506 'browser/test_extensions_browser_client.cc', |
507 'browser/test_extensions_browser_client.h', | 507 'browser/test_extensions_browser_client.h', |
508 'browser/test_management_policy.cc', | 508 'browser/test_management_policy.cc', |
509 'browser/test_management_policy.h', | 509 'browser/test_management_policy.h', |
510 'common/extension_builder.cc', | 510 'common/extension_builder.cc', |
511 'common/extension_builder.h', | 511 'common/extension_builder.h', |
512 'common/test_util.cc', | 512 'common/test_util.cc', |
513 'common/test_util.h', | 513 'common/test_util.h', |
514 'common/value_builder.cc', | 514 'common/value_builder.cc', |
515 'common/value_builder.h', | 515 'common/value_builder.h', |
| 516 'renderer/test_extensions_renderer_client.cc', |
| 517 'renderer/test_extensions_renderer_client.h', |
516 ], | 518 ], |
517 # Disable c4267 warnings until we fix size_t to int truncations. | 519 # Disable c4267 warnings until we fix size_t to int truncations. |
518 'msvs_disabled_warnings': [ 4267, ], | 520 'msvs_disabled_warnings': [ 4267, ], |
519 }, | 521 }, |
520 { | 522 { |
521 # TODO(tfarina): Our plan is to build and run this target on Chromium bots | 523 # TODO(tfarina): Our plan is to build and run this target on Chromium bots |
522 # (TS, CQ, Waterfall). First we will get this target passing all tests, | 524 # (TS, CQ, Waterfall). First we will get this target passing all tests, |
523 # after that we will start the work on buildbot to get this running there. | 525 # after that we will start the work on buildbot to get this running there. |
524 # When we consider this stable in the bots, we can go to unit_tests target | 526 # When we consider this stable in the bots, we can go to unit_tests target |
525 # and remove the duplicated entries from there, otherwise if we just | 527 # and remove the duplicated entries from there, otherwise if we just |
(...skipping 22 matching lines...) Expand all Loading... |
548 'test/test_extensions_client.cc', | 550 'test/test_extensions_client.cc', |
549 'test/test_extensions_client.h', | 551 'test/test_extensions_client.h', |
550 'test/test_permission_message_provider.cc', | 552 'test/test_permission_message_provider.cc', |
551 'test/test_permission_message_provider.h', | 553 'test/test_permission_message_provider.h', |
552 'test/test_permissions_provider.cc', | 554 'test/test_permissions_provider.cc', |
553 'test/test_permissions_provider.h', | 555 'test/test_permissions_provider.h', |
554 ], | 556 ], |
555 }, | 557 }, |
556 ] | 558 ] |
557 } | 559 } |
OLD | NEW |