Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'variables': { | 7 'variables': { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
| 10 'syscall_handler': [ | 10 'syscall_handler': [ |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 247 'type': 'executable', | 247 'type': 'executable', |
| 248 'dependencies': [ | 248 'dependencies': [ |
| 249 'sel', | 249 'sel', |
| 250 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 250 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| 251 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc', | 251 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc', |
| 252 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gy p:platform_qual_lib', | 252 '<(DEPTH)/native_client/src/trusted/platform_qualify/platform_qualify.gy p:platform_qual_lib', |
| 253 ], | 253 ], |
| 254 'sources': [ | 254 'sources': [ |
| 255 'sel_main.c', | 255 'sel_main.c', |
| 256 ], | 256 ], |
| 257 'conditions': [ | |
| 258 ['OS=="linux"', { | |
| 259 'link_settings': { | |
| 260 'libraries': [ | |
| 261 "-ldl", | |
|
Mark Seaborn
2011/08/23 18:26:36
Nit: use single quotes.
Brad Chen
2011/08/23 21:15:09
Done.
| |
| 262 ], | |
| 263 }, | |
| 264 }], | |
| 265 ] | |
|
Mark Seaborn
2011/08/23 18:26:36
Nit: add trailing comma
Brad Chen
2011/08/23 21:15:09
Done.
| |
| 257 }, | 266 }, |
| 258 # no tests are built here; see service_runtime_test.gyp | 267 # no tests are built here; see service_runtime_test.gyp |
| 259 ], | 268 ], |
| 260 'conditions': [ | 269 'conditions': [ |
| 261 ['OS=="win"', { | 270 ['OS=="win"', { |
| 262 'targets': [ | 271 'targets': [ |
| 263 { | 272 { |
| 264 'target_name': 'sel64', | 273 'target_name': 'sel64', |
| 265 'type': 'static_library', | 274 'type': 'static_library', |
| 266 'variables': { | 275 'variables': { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 347 ], | 356 ], |
| 348 'sources': [ | 357 'sources': [ |
| 349 'sel_main.c', | 358 'sel_main.c', |
| 350 ], | 359 ], |
| 351 }, | 360 }, |
| 352 # TODO(bsy): no tests are built; see build.scons | 361 # TODO(bsy): no tests are built; see build.scons |
| 353 ], | 362 ], |
| 354 }], | 363 }], |
| 355 ] | 364 ] |
| 356 } | 365 } |
| OLD | NEW |