| 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 { |
| 11 # TODO(tfarina): Rename this target to ui_base_unittests. | 11 # TODO(tfarina): Rename this target to ui_base_unittests. |
| 12 # In order to do this we will need to keep this target, add a dummy | 12 # In order to do this we will need to keep this target, add a dummy |
| 13 # ui_base_unittests target that just points to ui_unittests, change | 13 # ui_base_unittests target that just points to ui_unittests, change |
| 14 # buildbot code to reference the new 'ui_base_unittests' target. | 14 # buildbot code to reference the new 'ui_base_unittests' target. |
| 15 # After buildbot is updated, we can make the changes in Chromium and | 15 # After buildbot is updated, we can make the changes in Chromium and |
| 16 # remove 'ui_unittests' target. crbug.com/331829 | 16 # remove 'ui_unittests' target. crbug.com/331829 |
| 17 # GN version: //ui/base:unittests |
| 17 'target_name': 'ui_unittests', | 18 'target_name': 'ui_unittests', |
| 18 'type': '<(gtest_target_type)', | 19 'type': '<(gtest_target_type)', |
| 19 'dependencies': [ | 20 'dependencies': [ |
| 20 '../../base/base.gyp:base', | 21 '../../base/base.gyp:base', |
| 21 '../../base/base.gyp:test_support_base', | 22 '../../base/base.gyp:test_support_base', |
| 22 '../../net/net.gyp:net', | 23 '../../net/net.gyp:net', |
| 23 '../../skia/skia.gyp:skia', | 24 '../../skia/skia.gyp:skia', |
| 24 '../../testing/gmock.gyp:gmock', | 25 '../../testing/gmock.gyp:gmock', |
| 25 '../../testing/gtest.gyp:gtest', | 26 '../../testing/gtest.gyp:gtest', |
| 26 '../../third_party/icu/icu.gyp:icui18n', | 27 '../../third_party/icu/icu.gyp:icui18n', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 ], | 258 ], |
| 258 'variables': { | 259 'variables': { |
| 259 'test_suite_name': 'ui_unittests', | 260 'test_suite_name': 'ui_unittests', |
| 260 }, | 261 }, |
| 261 'includes': [ '../../build/apk_test.gypi' ], | 262 'includes': [ '../../build/apk_test.gypi' ], |
| 262 }, | 263 }, |
| 263 ], | 264 ], |
| 264 }], | 265 }], |
| 265 ], | 266 ], |
| 266 } | 267 } |
| OLD | NEW |