| 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', |
| 21 'keycodes/dom3/dom_key_data.h', |
| 19 'keycodes/dom4/keycode_converter.cc', | 22 'keycodes/dom4/keycode_converter.cc', |
| 20 'keycodes/dom4/keycode_converter.h', | 23 'keycodes/dom4/keycode_converter.h', |
| 21 'keycodes/dom4/keycode_converter_data.h', | 24 'keycodes/dom4/keycode_converter_data.h', |
| 22 ], | 25 ], |
| 23 }, | 26 }, |
| 24 { | 27 { |
| 25 # GN version: //ui/events:events_base | 28 # GN version: //ui/events:events_base |
| 26 'target_name': 'events_base', | 29 'target_name': 'events_base', |
| 27 'type': '<(component)', | 30 'type': '<(component)', |
| 28 'dependencies': [ | 31 'dependencies': [ |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 ], | 385 ], |
| 383 'variables': { | 386 'variables': { |
| 384 'test_suite_name': 'events_unittests', | 387 'test_suite_name': 'events_unittests', |
| 385 }, | 388 }, |
| 386 'includes': [ '../../build/apk_test.gypi' ], | 389 'includes': [ '../../build/apk_test.gypi' ], |
| 387 }, | 390 }, |
| 388 ], | 391 ], |
| 389 }], | 392 }], |
| 390 ], | 393 ], |
| 391 } | 394 } |
| OLD | NEW |