Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'target_name': 'native_theme', | 11 'target_name': 'native_theme', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
| 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', | 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', |
| 16 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
| 17 '../base/ui_base.gyp:ui_base', | 17 '../base/ui_base.gyp:ui_base', |
| 18 '../gfx/gfx.gyp:gfx', | 18 '../gfx/gfx.gyp:gfx', |
| 19 '../gfx/gfx.gyp:gfx_geometry', | 19 '../gfx/gfx.gyp:gfx_geometry', |
| 20 '../gfx/gfx.gyp:gfx_vector_icons', | |
|
tapted
2016/03/29 04:16:36
I don't think this is needed any more
Elly Fong-Jones
2016/04/04 17:09:55
Done.
| |
| 20 '../resources/ui_resources.gyp:ui_resources', | 21 '../resources/ui_resources.gyp:ui_resources', |
| 21 ], | 22 ], |
| 22 'defines': [ | 23 'defines': [ |
| 23 'NATIVE_THEME_IMPLEMENTATION', | 24 'NATIVE_THEME_IMPLEMENTATION', |
| 24 ], | 25 ], |
| 25 'sources': [ | 26 'sources': [ |
| 26 'common_theme.cc', | 27 'common_theme.cc', |
| 27 'common_theme.h', | 28 'common_theme.h', |
| 28 'native_theme.cc', | 29 'native_theme.cc', |
| 29 'native_theme.h', | 30 'native_theme.h', |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 59 '../../testing/gtest.gyp:gtest', | 60 '../../testing/gtest.gyp:gtest', |
| 60 'native_theme', | 61 'native_theme', |
| 61 ], | 62 ], |
| 62 'sources': [ | 63 'sources': [ |
| 63 '../../base/test/run_all_unittests.cc', | 64 '../../base/test/run_all_unittests.cc', |
| 64 'native_theme_mac_unittest.cc', | 65 'native_theme_mac_unittest.cc', |
| 65 ], | 66 ], |
| 66 }, | 67 }, |
| 67 ], | 68 ], |
| 68 } | 69 } |
| OLD | NEW |