| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../build/win_precompile.gypi', | 9 '../build/win_precompile.gypi', |
| 10 ], | 10 ], |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'target_name': 'test_registrar_constants', | 31 'target_name': 'test_registrar_constants', |
| 32 'type': 'static_library', | 32 'type': 'static_library', |
| 33 'include_dirs': [ | 33 'include_dirs': [ |
| 34 '..', | 34 '..', |
| 35 ], | 35 ], |
| 36 'sources': [ | 36 'sources': [ |
| 37 'test/test_registrar_constants.cc', | 37 'test/test_registrar_constants.cc', |
| 38 'test/test_registrar_constants.h', | 38 'test/test_registrar_constants.h', |
| 39 ], | 39 ], |
| 40 }, | 40 }, |
| 41 { |
| 42 'target_name': 'visual_elements_resources', |
| 43 'type': 'none', |
| 44 'copies': [ |
| 45 { |
| 46 # GN version: //win8/visual_elements_resources |
| 47 'destination': '<(PRODUCT_DIR)', |
| 48 'files': [ |
| 49 'resources/Logo.png', |
| 50 'resources/SecondaryTile.png', |
| 51 'resources/SmallLogo.png', |
| 52 'resources/chrome.VisualElementsManifest.xml', |
| 53 ], |
| 54 }, |
| 55 ], |
| 56 }, |
| 41 ], | 57 ], |
| 42 } | 58 } |
| OLD | NEW |