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

Side by Side Diff: base/base.gyp

Issue 7828084: Refactor ScopedJavaRef (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: operator= docs Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'base.gypi', 10 'base.gypi',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 ], 103 ],
104 }, 104 },
105 { 105 {
106 'target_name': 'base_unittests', 106 'target_name': 'base_unittests',
107 'type': 'executable', 107 'type': 'executable',
108 'sources': [ 108 'sources': [
109 # Infrastructure files. 109 # Infrastructure files.
110 'test/run_all_unittests.cc', 110 'test/run_all_unittests.cc',
111 111
112 # Tests. 112 # Tests.
113 'android/scoped_java_ref_unittest.cc',
113 'at_exit_unittest.cc', 114 'at_exit_unittest.cc',
114 'atomicops_unittest.cc', 115 'atomicops_unittest.cc',
115 'base64_unittest.cc', 116 'base64_unittest.cc',
116 'bind_unittest.cc', 117 'bind_unittest.cc',
117 'bits_unittest.cc', 118 'bits_unittest.cc',
118 'callback_unittest.cc', 119 'callback_unittest.cc',
119 'command_line_unittest.cc', 120 'command_line_unittest.cc',
120 'cpu_unittest.cc', 121 'cpu_unittest.cc',
121 'debug/leak_tracker_unittest.cc', 122 'debug/leak_tracker_unittest.cc',
122 'debug/stack_trace_unittest.cc', 123 'debug/stack_trace_unittest.cc',
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 'msvs_settings': { 401 'msvs_settings': {
401 'VCLinkerTool': { 402 'VCLinkerTool': {
402 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 403 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
403 }, 404 },
404 }, 405 },
405 }, 406 },
406 ], 407 ],
407 }], 408 }],
408 ], 409 ],
409 } 410 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698