Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / native_client / tests / performance / build.scons
index d6ece09..4165ca7 100644 (file)
@@ -1,7 +1,7 @@
 # -*- python -*-
-# Copyright 2012 The Native Client Authors.  All rights reserved.
-# Use of this source code is governed by a BSD-style license that can
-# be found in the LICENSE file.
+# Copyright 2012 The Native Client Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
 
 Import('env')
 
@@ -24,13 +24,8 @@ if env.Bit('mac'):
 
 exe = env.ComponentProgram('performance_test', inputs, EXTRA_LIBS=['platform'])
 
-description_list = ['trusted',
-                    env['TARGET_PLATFORM'].lower(),
-                    env['TARGET_FULLARCH']]
-description_string = '_'.join(description_list)
-
 node = env.CommandTest(
-    'performance_test.out', [exe, description_string],
+    'performance_test.out', [exe, env.GetPerfEnvDescription()],
     # Don't hide output: We want the timings to be reported in the
     # Buildbot logs so that Buildbot records the "RESULT" lines.
     capture_output=False)