Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
|
Alexander Potapenko
2013/10/29 13:36:11
It's 2013 already :)
alextaran1
2013/10/30 11:16:29
Done.
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'instrumented_libraries', | |
| 9 'type': 'none', | |
| 10 'variables': { | |
| 11 'prune_self_dependency': 1, | |
| 12 }, | |
| 13 'dependencies': [ | |
| 14 'libpng12-0', | |
| 15 'libxau6', | |
| 16 ], | |
| 17 'actions': [ | |
| 18 { | |
| 19 'action_name': 'fix_rpaths', | |
| 20 'inputs': [ | |
| 21 'fix_rpaths' | |
| 22 ], | |
| 23 'outputs': [ | |
| 24 '<(PRODUCT_DIR)/instrumented_libraries/asan/rpaths.fixed.txt' | |
| 25 ], | |
| 26 'action': ['./fix_rpaths', '<(PRODUCT_DIR)/instrumented_libraries/asan '] | |
| 27 }, | |
| 28 ], | |
| 29 }, | |
| 30 { | |
| 31 'target_name': 'libpng12-0', | |
| 32 'type': 'none', | |
| 33 'dependencies=': [ | |
|
Alexander Potapenko
2013/10/29 13:36:11
No need to have an empty dependency list, please d
Alexander Potapenko
2013/10/29 13:57:04
Please disregard.
alextaran1
2013/10/30 11:16:29
Disregarded. It's needed to remove cyclic dependen
| |
| 34 ], | |
| 35 'actions': [ | |
| 36 { | |
| 37 'action_name': '<(_target_name)', | |
| 38 'inputs': [ | |
| 39 'download_build_install', | |
| 40 ], | |
| 41 'outputs': [ | |
| 42 '<(PRODUCT_DIR)/instrumented_libraries/asan/<(_target_name).txt' | |
| 43 ], | |
| 44 'action': ['./download_build_install', '-i', '<(PRODUCT_DIR)/instrumen ted_libraries/asan', '-l', '<(_target_name)', '-m', '<(INTERMEDIATE_DIR)'] | |
| 45 }, | |
| 46 ], | |
| 47 }, | |
| 48 { | |
| 49 'target_name': 'libxau6', | |
|
Alexander Potapenko
2013/10/29 13:36:11
There's too much boilerplate for each library. I w
alextaran1
2013/10/30 11:16:29
Done nothing.
In future, we'll pass different buil
| |
| 50 'type': 'none', | |
| 51 'dependencies=': [ | |
| 52 ], | |
| 53 'actions': [ | |
| 54 { | |
| 55 'action_name': '<(_target_name)', | |
| 56 'inputs': [ | |
| 57 'download_build_install', | |
| 58 ], | |
| 59 'outputs': [ | |
| 60 '<(PRODUCT_DIR)/instrumented_libraries/asan/<(_target_name).txt' | |
| 61 ], | |
| 62 'action': ['./download_build_install', '-i', '<(PRODUCT_DIR)/instrumen ted_libraries/asan', '-l', '<(_target_name)', '-m', '<(INTERMEDIATE_DIR)'] | |
| 63 }, | |
| 64 ], | |
| 65 }, | |
| 66 ], | |
| 67 } | |
| OLD | NEW |