OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
7 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 7 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 'copies': [ | 337 'copies': [ |
338 { | 338 { |
339 'destination': '<(PRODUCT_DIR)', | 339 'destination': '<(PRODUCT_DIR)', |
340 'files': [ | 340 'files': [ |
341 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak' | 341 '<(SHARED_INTERMEDIATE_DIR)/repack/chrome.pak' |
342 ], | 342 ], |
343 }, | 343 }, |
344 { | 344 { |
345 'destination': '<(PRODUCT_DIR)/locales', | 345 'destination': '<(PRODUCT_DIR)/locales', |
346 'files': [ | 346 'files': [ |
347 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR
ED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))' | 347 '<!@pymod_do_main(repack_locales -o -p <(OS) -g <(grit_out_dir)
-s <(SHARED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(locales))' |
348 ], | 348 ], |
349 }, | 349 }, |
350 { | 350 { |
351 'destination': '<(PRODUCT_DIR)/pseudo_locales', | 351 'destination': '<(PRODUCT_DIR)/pseudo_locales', |
352 'files': [ | 352 'files': [ |
353 '<!@pymod_do_main(repack_locales -o -g <(grit_out_dir) -s <(SHAR
ED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(pseudo_locales))' | 353 '<!@pymod_do_main(repack_locales -o -p <(OS) -g <(grit_out_dir)
-s <(SHARED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(pseudo_locales))' |
354 ], | 354 ], |
355 }, | 355 }, |
356 ], | 356 ], |
357 'conditions': [ | 357 'conditions': [ |
358 ['branding=="Chrome"', { | 358 ['branding=="Chrome"', { |
359 'copies': [ | 359 'copies': [ |
360 { | 360 { |
361 # This location is for the Windows and Linux builds. For | 361 # This location is for the Windows and Linux builds. For |
362 # Windows, the chrome.release file ensures that these files | 362 # Windows, the chrome.release file ensures that these files |
363 # are copied into the installer. Note that we have a separate | 363 # are copied into the installer. Note that we have a separate |
364 # section in chrome_dll.gyp to copy these files for Mac, as it | 364 # section in chrome_dll.gyp to copy these files for Mac, as it |
365 # needs to be dropped inside the framework. | 365 # needs to be dropped inside the framework. |
366 'destination': '<(PRODUCT_DIR)/default_apps', | 366 'destination': '<(PRODUCT_DIR)/default_apps', |
367 'files': ['<@(default_apps_list)'] | 367 'files': ['<@(default_apps_list)'] |
368 }, | 368 }, |
369 ], | 369 ], |
370 }], | 370 }], |
371 ], # conditions | 371 ], # conditions |
372 }], # end OS != "mac" | 372 }], # end OS != "mac" |
373 ], # conditions | 373 ], # conditions |
374 }, | 374 }, |
375 ], # targets | 375 ], # targets |
376 } | 376 } |
OLD | NEW |