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 'target_name': 'window_open_disposition_java', | 11 'target_name': 'window_open_disposition_java', |
12 'type': 'none', | 12 'type': 'none', |
13 'sources': [ | 13 'sources': [ |
14 'java/WindowOpenDisposition.template', | 14 'java/WindowOpenDisposition.template', |
15 ], | 15 ], |
16 'variables': { | 16 'variables': { |
17 'package_name': 'org/chromium/ui', | 17 'package_name': 'org/chromium/ui', |
18 'template_deps': ['../base/window_open_disposition_list.h'], | 18 'template_deps': ['../base/window_open_disposition_list.h'], |
19 }, | 19 }, |
20 'includes': [ '../../build/android/java_cpp_template.gypi' ], | 20 'includes': [ '../../build/android/java_cpp_template.gypi' ], |
21 }, | 21 }, |
22 { | 22 { |
23 'target_name': 'bitmap_format_java', | 23 'target_name': 'bitmap_format_java', |
24 'type': 'none', | 24 'type': 'none', |
25 'sources': [ | 25 'sources': [ |
26 'java/BitmapFormat.template', | 26 '../gfx/android/java_bitmap.h', |
27 ], | 27 ], |
28 'variables': { | 28 'variables': { |
29 'package_name': 'org/chromium/ui/gfx', | 29 'package_name': 'org/chromium/ui/gfx', |
30 'template_deps': ['../gfx/android/bitmap_config_list.h'], | 30 'class_name': 'BitmapFormat', |
31 }, | 31 }, |
32 'includes': [ '../../build/android/java_cpp_template.gypi' ], | 32 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
33 }, | 33 }, |
34 { | 34 { |
35 'target_name': 'ui_java', | 35 'target_name': 'ui_java', |
36 'type': 'none', | 36 'type': 'none', |
37 'variables': { | 37 'variables': { |
38 'java_in_dir': '../../ui/android/java', | 38 'java_in_dir': '../../ui/android/java', |
39 'has_java_resources': 1, | 39 'has_java_resources': 1, |
40 'R_package': 'org.chromium.ui', | 40 'R_package': 'org.chromium.ui', |
41 'R_package_relpath': 'org/chromium/ui', | 41 'R_package_relpath': 'org/chromium/ui', |
42 }, | 42 }, |
(...skipping 12 matching lines...) Expand all Loading... |
55 'type': 'none', | 55 'type': 'none', |
56 'variables': { | 56 'variables': { |
57 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', | 57 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', |
58 }, | 58 }, |
59 'includes': [ | 59 'includes': [ |
60 '../../build/java_strings_grd.gypi', | 60 '../../build/java_strings_grd.gypi', |
61 ], | 61 ], |
62 }, | 62 }, |
63 ], | 63 ], |
64 } | 64 } |
OLD | NEW |