| 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 # GN version: //ui/events:dom4_keycode_converter | 11 # GN version: //ui/events:dom4_keycode_converter |
| 12 'target_name': 'dom4_keycode_converter', | 12 'target_name': 'dom4_keycode_converter', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '<(DEPTH)/base/base.gyp:base', | 15 '<(DEPTH)/base/base.gyp:base', |
| 16 ], | 16 ], |
| 17 'sources': [ | 17 'sources': [ |
| 18 # Note: sources list duplicated in GN build. | 18 # Note: sources list duplicated in GN build. |
| 19 'keycodes/dom3/dom_code.h', |
| 20 'keycodes/dom3/dom_key.h', |
| 19 'keycodes/dom4/keycode_converter.cc', | 21 'keycodes/dom4/keycode_converter.cc', |
| 20 'keycodes/dom4/keycode_converter.h', | 22 'keycodes/dom4/keycode_converter.h', |
| 21 'keycodes/dom4/keycode_converter_data.h', | 23 'keycodes/dom4/keycode_converter_data.h', |
| 22 ], | 24 ], |
| 23 }, | 25 }, |
| 24 { | 26 { |
| 25 # GN version: //ui/events:events_base | 27 # GN version: //ui/events:events_base |
| 26 'target_name': 'events_base', | 28 'target_name': 'events_base', |
| 27 'type': '<(component)', | 29 'type': '<(component)', |
| 28 'dependencies': [ | 30 'dependencies': [ |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 ], | 393 ], |
| 392 'variables': { | 394 'variables': { |
| 393 'test_suite_name': 'events_unittests', | 395 'test_suite_name': 'events_unittests', |
| 394 }, | 396 }, |
| 395 'includes': [ '../../build/apk_test.gypi' ], | 397 'includes': [ '../../build/apk_test.gypi' ], |
| 396 }, | 398 }, |
| 397 ], | 399 ], |
| 398 }], | 400 }], |
| 399 ], | 401 ], |
| 400 } | 402 } |
| OLD | NEW |