| 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': 'bitmap_format_java', | 11 'target_name': 'bitmap_format_java', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'variables': { | 13 'variables': { |
| 14 'source_file': '../gfx/android/java_bitmap.h', | 14 'source_file': '../gfx/android/java_bitmap.h', |
| 15 }, | 15 }, |
| 16 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 16 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
| 17 }, | 17 }, |
| 18 { | 18 { |
| 19 'target_name': 'page_transition_types_java', | 19 'target_name': 'page_transition_types_java', |
| 20 'type': 'none', | 20 'type': 'none', |
| 21 'sources': [ | |
| 22 'java/PageTransitionTypes.template', | |
| 23 ], | |
| 24 'variables': { | 21 'variables': { |
| 25 'package_name': 'org/chromium/ui/base', | 22 'source_file': '../base/page_transition_types.h', |
| 26 'template_deps': ['../base/page_transition_types_list.h'], | |
| 27 }, | 23 }, |
| 28 'includes': [ '../../build/android/java_cpp_template.gypi' ], | 24 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
| 29 }, | 25 }, |
| 30 { | 26 { |
| 31 'target_name': 'window_open_disposition_java', | 27 'target_name': 'window_open_disposition_java', |
| 32 'type': 'none', | 28 'type': 'none', |
| 33 'variables': { | 29 'variables': { |
| 34 'source_file': '../base/window_open_disposition.h', | 30 'source_file': '../base/window_open_disposition.h', |
| 35 }, | 31 }, |
| 36 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 32 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
| 37 }, | 33 }, |
| 38 { | 34 { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 60 'type': 'none', | 56 'type': 'none', |
| 61 'variables': { | 57 'variables': { |
| 62 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', | 58 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', |
| 63 }, | 59 }, |
| 64 'includes': [ | 60 'includes': [ |
| 65 '../../build/java_strings_grd.gypi', | 61 '../../build/java_strings_grd.gypi', |
| 66 ], | 62 ], |
| 67 }, | 63 }, |
| 68 ], | 64 ], |
| 69 } | 65 } |
| OLD | NEW |