Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'conditions': [ | 6 'conditions': [ |
| 7 ['OS=="android"', { | 7 ['OS=="android"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'remoting_jni_headers', | 10 'target_name': 'remoting_jni_headers', |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 { | 21 { |
| 22 'target_name': 'remoting_client_jni', | 22 'target_name': 'remoting_client_jni', |
| 23 'type': 'shared_library', | 23 'type': 'shared_library', |
| 24 'dependencies': [ | 24 'dependencies': [ |
| 25 'remoting_base', | 25 'remoting_base', |
| 26 'remoting_client', | 26 'remoting_client', |
| 27 'remoting_jni_headers', | 27 'remoting_jni_headers', |
| 28 'remoting_protocol', | 28 'remoting_protocol', |
| 29 '../google_apis/google_apis.gyp:google_apis', | 29 '../google_apis/google_apis.gyp:google_apis', |
| 30 '../ui/gfx/gfx.gyp:gfx', | 30 '../ui/gfx/gfx.gyp:gfx', |
| 31 '../ui/events/events.gyp:dom_keycode_converter', | |
|
Lambros
2015/09/08 23:39:44
Move this above /ui/gfx/
Sergey Ulanov
2015/09/09 00:30:07
Done.
| |
| 31 ], | 32 ], |
| 32 'sources': [ | 33 'sources': [ |
| 33 'client/jni/android_keymap.cc', | 34 'client/jni/android_keymap.cc', |
| 34 'client/jni/android_keymap.h', | 35 'client/jni/android_keymap.h', |
| 35 'client/jni/chromoting_jni_instance.cc', | 36 'client/jni/chromoting_jni_instance.cc', |
| 36 'client/jni/chromoting_jni_instance.h', | 37 'client/jni/chromoting_jni_instance.h', |
| 37 'client/jni/chromoting_jni_runtime.cc', | 38 'client/jni/chromoting_jni_runtime.cc', |
| 38 'client/jni/chromoting_jni_runtime.h', | 39 'client/jni/chromoting_jni_runtime.h', |
| 39 'client/jni/jni_client.cc', | 40 'client/jni/jni_client.cc', |
| 40 'client/jni/jni_client.h', | 41 'client/jni/jni_client.h', |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 168 ], | 169 ], |
| 169 'variables': { | 170 'variables': { |
| 170 'test_suite_name': 'remoting_unittests', | 171 'test_suite_name': 'remoting_unittests', |
| 171 }, | 172 }, |
| 172 'includes': [ '../build/apk_test.gypi' ], | 173 'includes': [ '../build/apk_test.gypi' ], |
| 173 }, | 174 }, |
| 174 ], | 175 ], |
| 175 }], # 'OS=="android" | 176 }], # 'OS=="android" |
| 176 ], # end of 'conditions' | 177 ], # end of 'conditions' |
| 177 } | 178 } |
| OLD | NEW |