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

Side by Side Diff: base/BUILD.gn

Issue 375873006: Rename source_prereqs to inputs in the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/compiled_action.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 component("base") { 8 component("base") {
9 sources = [ 9 sources = [
10 "third_party/dmg_fp/dmg_fp.h", 10 "third_party/dmg_fp/dmg_fp.h",
(...skipping 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1382 # will be created when creating an apk. 1382 # will be created when creating an apk.
1383 jar_excluded_patterns = [ 1383 jar_excluded_patterns = [
1384 "*/NativeLibraries.class", 1384 "*/NativeLibraries.class",
1385 "*/NativeLibraries##*.class", 1385 "*/NativeLibraries##*.class",
1386 ] 1386 ]
1387 } 1387 }
1388 1388
1389 java_cpp_template("base_java_application_state") { 1389 java_cpp_template("base_java_application_state") {
1390 sources = [ 1390 sources = [
1391 "android/java/src/org/chromium/base/ApplicationState.template", 1391 "android/java/src/org/chromium/base/ApplicationState.template",
1392 ] 1392 ]
1393 source_prereqs = [ 1393 inputs = [
1394 "android/application_state_list.h" 1394 "android/application_state_list.h"
1395 ] 1395 ]
1396 1396
1397 package_name = "org/chromium/base" 1397 package_name = "org/chromium/base"
1398 } 1398 }
1399 1399
1400 java_cpp_template("base_java_memory_pressure_level_list") { 1400 java_cpp_template("base_java_memory_pressure_level_list") {
1401 sources = [ 1401 sources = [
1402 "android/java/src/org/chromium/base/MemoryPressureLevelList.template", 1402 "android/java/src/org/chromium/base/MemoryPressureLevelList.template",
1403 ] 1403 ]
1404 source_prereqs = [ 1404 inputs = [
1405 "memory/memory_pressure_level_list.h" 1405 "memory/memory_pressure_level_list.h"
1406 ] 1406 ]
1407 1407
1408 package_name = "org/chromium/base" 1408 package_name = "org/chromium/base"
1409 } 1409 }
1410 1410
1411 java_cpp_template("base_native_libraries_gen") { 1411 java_cpp_template("base_native_libraries_gen") {
1412 sources = [ 1412 sources = [
1413 "android/java/templates/NativeLibraries.template", 1413 "android/java/templates/NativeLibraries.template",
1414 ] 1414 ]
1415 source_prereqs = [ 1415 inputs = [
1416 "android/java/templates/native_libraries_array.h", 1416 "android/java/templates/native_libraries_array.h",
1417 ] 1417 ]
1418 1418
1419 package_name = "org/chromium/base/library_loader" 1419 package_name = "org/chromium/base/library_loader"
1420 include_path = "android/java/templates" 1420 include_path = "android/java/templates"
1421 } 1421 }
1422 } 1422 }
OLDNEW
« no previous file with comments | « no previous file | build/compiled_action.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698