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

Side by Side Diff: runtime/bin/bin.gypi

Issue 10909189: Add gyp files to build NSS in Dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove changes at global level, move to runtime configuration file. Created 8 years, 1 month 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
« no previous file with comments | « no previous file | runtime/bin/net/nss.gyp » ('j') | runtime/bin/net/nss.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', 7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc',
8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc',
9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc',
10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc',
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 'target_name': 'libdart_builtin', 253 'target_name': 'libdart_builtin',
254 'type': 'static_library', 254 'type': 'static_library',
255 'dependencies': [ 255 'dependencies': [
256 'generate_builtin_cc_file', 256 'generate_builtin_cc_file',
257 'generate_crypto_cc_file', 257 'generate_crypto_cc_file',
258 'generate_io_cc_file', 258 'generate_io_cc_file',
259 'generate_io_patch_cc_file', 259 'generate_io_patch_cc_file',
260 'generate_json_cc_file', 260 'generate_json_cc_file',
261 'generate_uri_cc_file', 261 'generate_uri_cc_file',
262 'generate_utf_cc_file', 262 'generate_utf_cc_file',
263 'nss',
263 ], 264 ],
264 'include_dirs': [ 265 'include_dirs': [
265 '..', 266 '..',
266 ], 267 ],
267 'sources': [ 268 'sources': [
268 'builtin_natives.cc', 269 'builtin_natives.cc',
269 'builtin.h', 270 'builtin.h',
270 ], 271 ],
271 'includes': [ 272 'includes': [
272 'builtin_impl_sources.gypi', 273 'builtin_impl_sources.gypi',
(...skipping 23 matching lines...) Expand all
296 ['OS=="linux"', { 297 ['OS=="linux"', {
297 'link_settings': { 298 'link_settings': {
298 'libraries': [ 299 'libraries': [
299 '-ldl', 300 '-ldl',
300 ], 301 ],
301 }, 302 },
302 }], 303 }],
303 ], 304 ],
304 }, 305 },
305 { 306 {
307 'target_name': 'nss',
308 'type': 'none',
309 'dependencies': [
310 'bin/net/nss.gyp:nss',
311 'bin/net/nss.gyp:nspr',
312 'bin/net/nss.gyp:nssckbi',
313 'bin/net/nss.gyp:nss_static',
314 'bin/net/ssl.gyp:libssl',
315 'bin/net/zlib.gyp:zlib',
316 'bin/net/sqlite.gyp:sqlite',
317 ],
318 },
319 {
306 'target_name': 'libdart_withcore', 320 'target_name': 'libdart_withcore',
307 'type': 'static_library', 321 'type': 'static_library',
308 'dependencies': [ 322 'dependencies': [
309 'libdart_lib_withcore', 323 'libdart_lib_withcore',
310 'libdart_vm', 324 'libdart_vm',
311 'libjscre', 325 'libjscre',
312 'libdouble_conversion', 326 'libdouble_conversion',
313 'generate_version_cc_file', 327 'generate_version_cc_file',
314 ], 328 ],
315 'include_dirs': [ 329 'include_dirs': [
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 ['OS=="mac"', { 571 ['OS=="mac"', {
558 'xcode_settings': { 572 'xcode_settings': {
559 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 573 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
560 }, 574 },
561 }], 575 }],
562 ], 576 ],
563 }, 577 },
564 ], 578 ],
565 } 579 }
566 580
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/net/nss.gyp » ('j') | runtime/bin/net/nss.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698