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 'target_defaults': { | 6 'target_defaults': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
9 'defines': [ | 9 'defines': [ |
10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
859 '../base/base.gyp:base_java', | 859 '../base/base.gyp:base_java', |
860 '../net/net.gyp:net_java', | 860 '../net/net.gyp:net_java', |
861 'mojo_native_viewport_java', | 861 'mojo_native_viewport_java', |
862 'libmojo_shell', | 862 'libmojo_shell', |
863 ], | 863 ], |
864 'variables': { | 864 'variables': { |
865 'apk_name': 'MojoShell', | 865 'apk_name': 'MojoShell', |
866 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 866 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
867 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 867 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
868 'native_lib_target': 'libmojo_shell', | 868 'native_lib_target': 'libmojo_shell', |
869 'additional_bundled_libs': [ | |
870 '<(SHARED_LIB_DIR)/libmojo_network_service.>(android_product_exten sion)', | |
tim (not reviewing)
2014/06/26 16:33:02
q's mostly for my own education:
- What's "android
qsr
2014/06/26 16:41:16
android_product_extension is .so for normal build,
| |
871 ], | |
869 }, | 872 }, |
870 'includes': [ '../build/java_apk.gypi' ], | 873 'includes': [ '../build/java_apk.gypi' ], |
871 } | 874 } |
872 ], | 875 ], |
873 }], | 876 }], |
874 ['OS=="linux"', { | 877 ['OS=="linux"', { |
875 'targets': [ | 878 'targets': [ |
876 { | 879 { |
877 'target_name': 'mojo_dbus_service', | 880 'target_name': 'mojo_dbus_service', |
878 'type': 'static_library', | 881 'type': 'static_library', |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
984 'views/views_init_internal.h', | 987 'views/views_init_internal.h', |
985 ], | 988 ], |
986 'defines': [ | 989 'defines': [ |
987 'MOJO_VIEWS_IMPLEMENTATION', | 990 'MOJO_VIEWS_IMPLEMENTATION', |
988 ], | 991 ], |
989 }, | 992 }, |
990 ], | 993 ], |
991 }], | 994 }], |
992 ], | 995 ], |
993 } | 996 } |
OLD | NEW |