Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: ppapi/ppapi.gyp

Issue 6250024: Add a target for the proxy unittests. Write tests for the var tracker.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 ], 640 ],
641 'conditions': [ 641 'conditions': [
642 ['OS=="win"', { 642 ['OS=="win"', {
643 }], 643 }],
644 ['OS=="linux"', { 644 ['OS=="linux"', {
645 }], 645 }],
646 ['OS=="mac"', { 646 ['OS=="mac"', {
647 }] 647 }]
648 ], 648 ],
649 }, 649 },
650 {
651 'target_name': 'ppapi_unittests',
652 'type': 'executable',
653 'variables': {
654 'chromium_code': 1,
655 },
656 'msvs_guid': 'C2BD9365-5BD7-44A7-854E-A49E606BE8E4',
657 'dependencies': [
658 'ppapi_proxy',
659 '../base/base.gyp:test_support_base',
660 '../ipc/ipc.gyp:test_support_ipc',
661 '../testing/gmock.gyp:gmock',
662 '../testing/gtest.gyp:gtest',
663 ],
664 'sources': [
665 'proxy/run_all_unittests.cc',
666
667 'proxy/plugin_var_tracker_unittest.cc',
668 ],
669 },
650 ], 670 ],
651 } 671 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/proxy/plugin_var_tracker.h » ('j') | ppapi/proxy/plugin_var_tracker_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698