Chromium Code Reviews| 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 { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 59 'keycodes/keyboard_code_conversion.h', | 59 'keycodes/keyboard_code_conversion.h', |
| 60 'keycodes/keyboard_code_conversion_android.cc', | 60 'keycodes/keyboard_code_conversion_android.cc', |
| 61 'keycodes/keyboard_code_conversion_android.h', | 61 'keycodes/keyboard_code_conversion_android.h', |
| 62 'keycodes/keyboard_code_conversion_mac.h', | 62 'keycodes/keyboard_code_conversion_mac.h', |
| 63 'keycodes/keyboard_code_conversion_mac.mm', | 63 'keycodes/keyboard_code_conversion_mac.mm', |
| 64 'keycodes/keyboard_code_conversion_win.cc', | 64 'keycodes/keyboard_code_conversion_win.cc', |
| 65 'keycodes/keyboard_code_conversion_win.h', | 65 'keycodes/keyboard_code_conversion_win.h', |
| 66 'keycodes/keyboard_code_conversion_x.cc', | 66 'keycodes/keyboard_code_conversion_x.cc', |
| 67 'keycodes/keyboard_code_conversion_x.h', | 67 'keycodes/keyboard_code_conversion_x.h', |
| 68 'keycodes/keyboard_codes.h', | 68 'keycodes/keyboard_codes.h', |
| 69 'keycodes/keyboard_lookup_win.cc', | |
|
dtapuska
2016/01/21 01:59:36
There was a comment about the gn file; do you need
chongz
2016/01/21 15:47:40
Yeah I guess so, I will look into the gn file
| |
| 70 'keycodes/keyboard_lookup_win.h', | |
| 69 'latency_info.cc', | 71 'latency_info.cc', |
| 70 'latency_info.h', | 72 'latency_info.h', |
| 71 'x/keysym_to_unicode.cc', | 73 'x/keysym_to_unicode.cc', |
| 72 'x/keysym_to_unicode.h', | 74 'x/keysym_to_unicode.h', |
| 73 ], | 75 ], |
| 74 'export_dependent_settings': [ | 76 'export_dependent_settings': [ |
| 75 '../../ui/gfx/gfx.gyp:gfx', | 77 '../../ui/gfx/gfx.gyp:gfx', |
| 76 ], | 78 ], |
| 77 'conditions': [ | 79 'conditions': [ |
| 78 ['use_x11==1', { | 80 ['use_x11==1', { |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 378 'type': 'none', | 380 'type': 'none', |
| 379 'variables': { | 381 'variables': { |
| 380 'jni_gen_package': 'ui', | 382 'jni_gen_package': 'ui', |
| 381 'input_java_class': 'android/view/MotionEvent.class', | 383 'input_java_class': 'android/view/MotionEvent.class', |
| 382 }, | 384 }, |
| 383 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 385 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 384 }, | 386 }, |
| 385 ], | 387 ], |
| 386 }], | 388 }], |
| 387 ], | 389 ], |
| 388 } | 390 } |
|
dtapuska
2016/01/21 01:59:35
any idea why this line changed?
chongz
2016/01/21 15:47:39
Because my editor will force a new line at EOF...
| |
| OLD | NEW |