Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: android_webview/android_webview.gyp

Issue 1410203002: Start adding gn build for android_webview (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2009 The Chromium Authors. All rights reserved. 1 # Copyright 2009 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 'system_webview_package_name%': 'com.android.webview', 7 'system_webview_package_name%': 'com.android.webview',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'locale_pak_files': [ 117 'locale_pak_files': [
118 '<@(webview_locales_input_common_paks)', 118 '<@(webview_locales_input_common_paks)',
119 '<@(webview_locales_input_individual_paks)', 119 '<@(webview_locales_input_individual_paks)',
120 ], 120 ],
121 }, 121 },
122 'includes': [ 122 'includes': [
123 '../build/android/locale_pak_resources.gypi', 123 '../build/android/locale_pak_resources.gypi',
124 ], 124 ],
125 }, 125 },
126 { 126 {
127 # GN version: //android_webview:strings_grd
127 'target_name': 'android_webview_strings_grd', 128 'target_name': 'android_webview_strings_grd',
128 'android_unmangled_name': 1, 129 'android_unmangled_name': 1,
129 'type': 'none', 130 'type': 'none',
130 'variables': { 131 'variables': {
131 'grd_file': '../android_webview/java/strings/android_webview_strings.grd ', 132 'grd_file': '../android_webview/java/strings/android_webview_strings.grd ',
132 }, 133 },
133 'includes': [ 134 'includes': [
134 '../build/java_strings_grd.gypi', 135 '../build/java_strings_grd.gypi',
135 ], 136 ],
136 }, 137 },
137 { 138 {
139 # GN version: //android_webview/common:version
138 'target_name': 'android_webview_version', 140 'target_name': 'android_webview_version',
139 'type': 'none', 141 'type': 'none',
140 'direct_dependent_settings': { 142 'direct_dependent_settings': {
141 'include_dirs': [ 143 'include_dirs': [
142 '<(SHARED_INTERMEDIATE_DIR)', 144 '<(SHARED_INTERMEDIATE_DIR)',
143 ], 145 ],
144 }, 146 },
145 # Because generate_version generates a header, we must set the 147 # Because generate_version generates a header, we must set the
146 # hard_dependency flag. 148 # hard_dependency flag.
147 'hard_dependency': 1, 149 'hard_dependency': 1,
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 'renderer/print_render_frame_observer.h', 378 'renderer/print_render_frame_observer.h',
377 ], 379 ],
378 }, 380 },
379 { 381 {
380 'target_name': 'libwebviewchromium', 382 'target_name': 'libwebviewchromium',
381 'includes': [ 383 'includes': [
382 'libwebviewchromium.gypi', 384 'libwebviewchromium.gypi',
383 ], 385 ],
384 }, 386 },
385 { 387 {
388 # GN version: //android_webview:android_webview_java
386 'target_name': 'android_webview_java', 389 'target_name': 'android_webview_java',
387 'type': 'none', 390 'type': 'none',
388 'dependencies': [ 391 'dependencies': [
389 '../android_webview/native/webview_native.gyp:android_webview_aw_permiss ion_request_resource', 392 '../android_webview/native/webview_native.gyp:android_webview_aw_permiss ion_request_resource',
390 '../components/components.gyp:external_video_surface_java', 393 '../components/components.gyp:external_video_surface_java',
391 '../components/components.gyp:navigation_interception_java', 394 '../components/components.gyp:navigation_interception_java',
392 '../components/components.gyp:policy_java', 395 '../components/components.gyp:policy_java',
393 '../components/components.gyp:web_contents_delegate_android_java', 396 '../components/components.gyp:web_contents_delegate_android_java',
394 '../content/content.gyp:content_java', 397 '../content/content.gyp:content_java',
395 '../ui/android/ui_android.gyp:ui_java', 398 '../ui/android/ui_android.gyp:ui_java',
(...skipping 30 matching lines...) Expand all
426 'android_manifest_template_vars': ['package=<(system_webview_package_nam e)'], 429 'android_manifest_template_vars': ['package=<(system_webview_package_nam e)'],
427 }, 430 },
428 'includes': [ 'apk/system_webview_apk_common.gypi' ], 431 'includes': [ 'apk/system_webview_apk_common.gypi' ],
429 }, 432 },
430 ], 433 ],
431 'includes': [ 434 'includes': [
432 'android_webview_tests.gypi', 435 'android_webview_tests.gypi',
433 'apk/system_webview_paks.gypi', 436 'apk/system_webview_paks.gypi',
434 ], 437 ],
435 } 438 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698