OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 # GN version: //ui/oobe_ui:resources |
| 9 'target_name': 'oobe_ui_resources', |
| 10 'type': 'none', |
| 11 'variables': { |
| 12 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/oobe', |
| 13 }, |
| 14 'actions': [ |
| 15 { |
| 16 'action_name': 'oobe_ui_resources', |
| 17 'variables': { |
| 18 'grit_grd_file': 'oobe_ui_resources.grd', |
| 19 }, |
| 20 'includes': [ '../../build/grit_action.gypi' ], |
| 21 }, |
| 22 ], |
| 23 'includes': [ '../../build/grit_target.gypi' ], |
| 24 'copies': [ |
| 25 { |
| 26 'destination': '<(PRODUCT_DIR)', |
| 27 'files': [ |
| 28 '<(SHARED_INTERMEDIATE_DIR)/ui/oobe/oobe_ui_resources.pak', |
| 29 ], |
| 30 }, |
| 31 ], |
| 32 }, |
| 33 { |
| 34 'variables': { |
| 35 'declaration_file': 'declarations/oobe.json', |
| 36 }, |
| 37 'includes': ['../../components/wug/generator/wug.gypi'], |
| 38 }, |
| 39 { |
| 40 # GN version: //ui/oobe_ui |
| 41 'target_name': 'oobe_ui', |
| 42 'type': '<(component)', |
| 43 'dependencies': [ |
| 44 '../../components/components.gyp:wug', |
| 45 'oobe_ui_resources', |
| 46 'ui_oobe_declarations_oobe_json', |
| 47 ], |
| 48 'sources': [ |
| 49 'oobe_ui.cc', |
| 50 'oobe_ui.h', |
| 51 'oobe_ui_export.h', |
| 52 ] |
| 53 }, |
| 54 ] |
| 55 } |
OLD | NEW |