| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 # GN version: //ui/keyboard:resources |
| 11 'target_name': 'keyboard_resources', | 12 'target_name': 'keyboard_resources', |
| 12 'type': 'none', | 13 'type': 'none', |
| 13 'variables': { | 14 'variables': { |
| 14 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard', | 15 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard', |
| 15 }, | 16 }, |
| 16 'actions': [ | 17 'actions': [ |
| 17 { | 18 { |
| 18 'action_name': 'keyboard_resources', | 19 'action_name': 'keyboard_resources', |
| 19 'variables': { | 20 'variables': { |
| 20 'grit_grd_file': 'keyboard_resources.grd', | 21 'grit_grd_file': 'keyboard_resources.grd', |
| 21 }, | 22 }, |
| 22 'includes': [ '../../build/grit_action.gypi' ], | 23 'includes': [ '../../build/grit_action.gypi' ], |
| 23 }, | 24 }, |
| 24 ], | 25 ], |
| 25 'includes': [ '../../build/grit_target.gypi' ], | 26 'includes': [ '../../build/grit_target.gypi' ], |
| 26 'copies': [ | 27 'copies': [ |
| 27 { | 28 { |
| 28 'destination': '<(PRODUCT_DIR)', | 29 'destination': '<(PRODUCT_DIR)', |
| 29 'files': [ | 30 'files': [ |
| 30 '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/keyboard_resources.pak', | 31 '<(SHARED_INTERMEDIATE_DIR)/ui/keyboard/keyboard_resources.pak', |
| 31 ], | 32 ], |
| 32 }, | 33 }, |
| 33 ], | 34 ], |
| 34 }, | 35 }, |
| 35 { | 36 { |
| 37 # GN version: //ui/keyboard |
| 36 'target_name': 'keyboard', | 38 'target_name': 'keyboard', |
| 37 'type': '<(component)', | 39 'type': '<(component)', |
| 38 'dependencies': [ | 40 'dependencies': [ |
| 39 '../../base/base.gyp:base', | 41 '../../base/base.gyp:base', |
| 40 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 42 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 41 '../../content/content.gyp:content_browser', | 43 '../../content/content.gyp:content_browser', |
| 42 '../../ipc/ipc.gyp:ipc', | 44 '../../ipc/ipc.gyp:ipc', |
| 43 '../../skia/skia.gyp:skia', | 45 '../../skia/skia.gyp:skia', |
| 44 '../../url/url.gyp:url_lib', | 46 '../../url/url.gyp:url_lib', |
| 45 '../aura/aura.gyp:aura', | 47 '../aura/aura.gyp:aura', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 }], | 111 }], |
| 110 ['OS=="win" and win_use_allocator_shim==1', { | 112 ['OS=="win" and win_use_allocator_shim==1', { |
| 111 'dependencies': [ | 113 'dependencies': [ |
| 112 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 114 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 113 ], | 115 ], |
| 114 }], | 116 }], |
| 115 ], | 117 ], |
| 116 }, | 118 }, |
| 117 ], | 119 ], |
| 118 } | 120 } |
| OLD | NEW |