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

Side by Side Diff: mojo/mojo_apps_js_unittests.isolate

Issue 226123004: Get rid of all component builds specific .isolate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'includes': [ 5 'includes': [
6 '../third_party/icu/icu.isolate', 6 '../third_party/icu/icu.isolate',
7 ], 7 ],
8 'conditions': [ 8 'conditions': [
9 ['OS=="win" or OS=="mac" or OS=="linux"', { 9 ['OS=="win" or OS=="mac" or OS=="linux"', {
10 'variables': { 10 'variables': {
(...skipping 17 matching lines...) Expand all
28 }, 28 },
29 }], 29 }],
30 ['OS=="win"', { 30 ['OS=="win"', {
31 'variables': { 31 'variables': {
32 'isolate_dependency_tracked': [ 32 'isolate_dependency_tracked': [
33 '<(PRODUCT_DIR)/mojo_system.dll', 33 '<(PRODUCT_DIR)/mojo_system.dll',
34 '<(PRODUCT_DIR)/mojo_test_support.dll', 34 '<(PRODUCT_DIR)/mojo_test_support.dll',
35 ], 35 ],
36 }, 36 },
37 }], 37 }],
38 ['OS=="win" and component=="shared_library"', {
39 'variables': {
40 'isolate_dependency_tracked': [
41 '<(PRODUCT_DIR)/base.dll',
42 '<(PRODUCT_DIR)/base_i18n.dll',
43 '<(PRODUCT_DIR)/gin.dll',
44 '<(PRODUCT_DIR)/mojo_system_impl.dll',
45 '<(PRODUCT_DIR)/msvcp120d.dll',
46 '<(PRODUCT_DIR)/msvcr120d.dll',
47 '<(PRODUCT_DIR)/v8.dll',
48 ],
49 },
50 }],
51 ['OS=="linux"', { 38 ['OS=="linux"', {
52 'variables': { 39 'variables': {
53 'isolate_dependency_tracked': [ 40 'isolate_dependency_tracked': [
54 '<(PRODUCT_DIR)/lib/libmojo_test_support.so', 41 '<(PRODUCT_DIR)/lib/libmojo_test_support.so',
55 ], 42 ],
56 }, 43 },
57 }], 44 }],
58 ['OS=="linux" and component=="shared_library"', {
59 'variables': {
60 'isolate_dependency_tracked': [
61 '<(PRODUCT_DIR)/lib/libbase.so',
62 '<(PRODUCT_DIR)/lib/libbase_i18n.so',
63 '<(PRODUCT_DIR)/lib/libgin.so',
64 '<(PRODUCT_DIR)/lib/libmojo_system_impl.so',
65 '<(PRODUCT_DIR)/lib/libv8.so',
66 ],
67 },
68 }],
69 ['OS=="mac"', { 45 ['OS=="mac"', {
70 'variables': { 46 'variables': {
71 'isolate_dependency_tracked': [ 47 'isolate_dependency_tracked': [
72 '<(PRODUCT_DIR)/libmojo_gles2.dylib', 48 '<(PRODUCT_DIR)/libmojo_gles2.dylib',
73 '<(PRODUCT_DIR)/libmojo_test_support.dylib', 49 '<(PRODUCT_DIR)/libmojo_test_support.dylib',
74 ], 50 ],
75 }, 51 },
76 }], 52 }],
77 ['OS=="mac" and component=="shared_library"', {
78 'variables': {
79 'isolate_dependency_tracked': [
80 '<(PRODUCT_DIR)/libbase.dylib',
81 '<(PRODUCT_DIR)/libbase_i18n.dylib',
82 '<(PRODUCT_DIR)/libgfx.dylib',
83 '<(PRODUCT_DIR)/libgfx_geometry.dylib',
84 '<(PRODUCT_DIR)/libgin.dylib',
85 '<(PRODUCT_DIR)/libgl_wrapper.dylib',
86 '<(PRODUCT_DIR)/libgles2_utils.dylib',
87 '<(PRODUCT_DIR)/libmojo_common_lib.dylib',
88 '<(PRODUCT_DIR)/libmojo_environment_chromium_impl.dylib',
89 '<(PRODUCT_DIR)/libmojo_system_impl.dylib',
90 '<(PRODUCT_DIR)/libskia.dylib',
91 '<(PRODUCT_DIR)/libv8.dylib',
92 ],
93 },
94 }],
95 ], 53 ],
96 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698