From 320b2046feb2d6f8ecf6d7b47cbc882dc0f93407 Mon Sep 17 00:00:00 2001 From: "steveblock@chromium.org" Date: Tue, 10 Jul 2012 23:12:06 +0000 Subject: Fix Java file generation rule in java_aidl.gypi The Java file generation rule in java_aidl.gypi assumes the wrong output path for the generated file. This leads to spurious rebuilds. The problem is that by default, the aidl tool outputs the Java file to //.java, not to /.java as assumed by the rule. This change fixes the problem by explicitly specifying the output path to aidl. Also remove superfluous path components on input files. Review URL: https://chromiumcodereview.appspot.com/10690092 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145982 0039d316-1c4b-4281-b951-d872f2087c98 --- content/content.gyp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/content.gyp') diff --git a/content/content.gyp b/content/content.gyp index 8ce61f7..9695e7e0 100644 --- a/content/content.gyp +++ b/content/content.gyp @@ -230,11 +230,11 @@ 'target_name': 'common_aidl', 'type': 'none', 'variables': { - 'aidl_interface_file': '../content/public/android/java/src/org/chromium/content/common/common.aidl', + 'aidl_interface_file': 'public/android/java/src/org/chromium/content/common/common.aidl', }, 'sources': [ - '../content/public/android/java/src/org/chromium/content/common/ISandboxedProcessCallback.aidl', - '../content/public/android/java/src/org/chromium/content/common/ISandboxedProcessService.aidl', + 'public/android/java/src/org/chromium/content/common/ISandboxedProcessCallback.aidl', + 'public/android/java/src/org/chromium/content/common/ISandboxedProcessService.aidl', ], 'includes': [ '../build/java_aidl.gypi' ], }, -- cgit v1.1